|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?立即注册
x
php ajax json post提交的方法
- $('#save').click(function() {
- var tmp = JSON.stringify($('.dd').nestable('serialize'));
- // tmp value: [{"id":21,"children":[{"id":196},{"id":195},{"id":49},{"id":194}]},{"id":29,"children":[{"id":184},{"id":152}]},...]
- $.ajax({
- type: 'POST',
- url: 'save_categories.php',
- data: {'categories': tmp},
- success: function(msg) {
- alert(msg);
- }
- });
- });
复制代码 |
|