Jquery序列化表单值传递后台

var data={};

$.each($('#form1').serializeArray(),function() {
   data[this.name] = this.value;
});
$.post(urls.save, data, function(data) {
       ...
});

$('#form1').serializeArray()序列化后的值为:

[{username:admin,password:123456}]

转载于:https://my.oschina.net/u/3097116/blog/3094278

你可能感兴趣的:(Jquery序列化表单值传递后台)