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

表单序列化 js

时间:2015-07-10 18:15:24      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:

function serliaze(form) { //序列化表单
var obj = {};
$.each(form.serializeArray(), function (index) {
if (obj[this[‘name‘]]) {
obj[this[‘name‘]] = obj[this[‘name‘]] + ‘,‘ + this[‘value‘];
} else {
obj[this[‘name‘]] = this[‘value‘];
}
});
return obj;
}

表单序列化 js

标签:

原文地址:http://www.cnblogs.com/jinhaoObject/p/4636095.html

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