利用Jquery将表单序列化成JS对象

//表单序列化成JSON对象
$.fn.serializeObject = function () {
var o = {};
var a = this.serializeArray();
$.each(a, function () {
if (o[this.name]) {
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;
}

//调用方式

  var data = $(".layui-form").serializeObject();

data 就是JS对象了

posted @ 2018-11-04 01:36  NET木下  阅读(354)  评论(0编辑  收藏  举报