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

序列化表单为Json字符串

时间:2018-06-29 18:29:57      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:||   ali   序列化表单   else   each   ==   ret   efi   FN   

$.fn.serializeObject = function () {
var o = {};
var a = this.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;
};

 

var formJson=JSON.stringify($(‘form‘).serializeObject())

序列化表单为Json字符串

标签:||   ali   序列化表单   else   each   ==   ret   efi   FN   

原文地址:https://www.cnblogs.com/Jayesslee/p/9244755.html

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