当前位置:主页 > 网页前端 > jquery >

jquery将一个表单序列化为一个对象的方法

时间:2021-07-19 07:59:20 | 栏目:jquery | 点击:

复制代码 代码如下:

var aa=function(form){
var o={};
$.each(form.serializeArray(),function(index){
if(o[this['name']]){
o[this['name']] = o[this['name']]+","+this['value'];
}else{
o[this['name']] = this['value'];
}
});
return o;
}

您可能感兴趣的文章:

相关文章