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;
}
时间: 2024-10-21 08:23:37