表单序列化 js

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;
}

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