码迷,mamicode.com
首页 > Web开发 > 详细

jquery ajax 使用serialize() 表单字段过多导致的问题

时间:2015-10-10 20:18:56      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:

jquery ajax 使用serialize() 表单字段过多导致字段不能全部发送,改用了serializeArray()方法,再查下使用方法,暂时没有发现什么问题

// 如:{Name:‘摘取天上星‘,position:‘IT技术‘}
// ps:注意将同名的放在一个数组里
function getFormJson(form) {
  var o = {};
  var a = $(form).serializeArray();
  $.each(a, function () {
    if (o[this.name] !== undefined) {
      if (!o[this.name].push) {
        o[this.name] = [o[this.name]];
      }
      o[this.name].push(this.value || ‘‘);
    } else {
      o[this.name] = this.value || ‘‘;
    }
  });
  return o;
}
//调试调用 
$(function(){
  $("#button").click(function(){
    alert(getFormJson("#formID"));
  });
});
//Ajax提交
$.ajax({
  type: "POST",
  url:"ajax.php",
  data:getFormJson($("#formID")),//表单数据JSON格式的函数参数里填写表单的ID或要提交的表单
  dataType: ‘json‘,
  success: function(msg) {alert(msg);},
  error: function(error){alert(error);}
});

代码来源:http://www.tuicool.com/articles/NJFnEnz

jquery ajax 使用serialize() 表单字段过多导致的问题

标签:

原文地址:http://my.oschina.net/pureboys/blog/515369

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!