jQuery - 基于serializeArray的serializeObject
2021-06-22 06:06
标签:pass 兼容 amp logs call object json ace lan 原文地址 http://blog.csdn.net/flashdelover/article/details/8185775 jQuery有方法$.fn.serialize,可将表单序列化成字符串;有方法$.fn.serializeArray,可将表单序列化成数组。 注:当表单中参数出现同名时,serializeObject会取第一个,而忽略后续的。 则 + 减少方法依赖,扩大兼容范围 jQuery - 基于serializeArray的serializeObject 标签:pass 兼容 amp logs call object json ace lan 原文地址:http://www.cnblogs.com/jcz1206/p/7171723.html
如果需要其序列化为JSON对象,那么可以基于serializeArray编写方法serializeObject轻松实现://work with jQuery 1.x
jQuery.prototype.serializeObject=function(){
var obj=new Object();
$.each(this.serializeArray(),function(index,param){
if(!(param.name in obj)){
obj[param.name]=param.value;
}
});
return obj;
};
设有jQuery("form").serialize(); //"username=&password="
jQuery("form").serializeArray(); //[{name:"username",value:""},{name:"password",value:""}]
jQuery("form").serializeObject(); //{username:"",password:""}
20150125更新
===========
+ 此版本不再兼容IE8
+ 修复一个逻辑错误//work with jQuery 2.x
jQuery.prototype.serializeObject=function(){
var hasOwnProperty=Object.prototype.hasOwnProperty;
return this.serializeArray().reduce(function(data,pair){
if(!hasOwnProperty.call(data,pair.name)){
data[pair.name]=pair.value;
}
return data;
},{});
};
20150705更新
===========
+ 改用原生循环,提升代码性能//work with jQuery Compact 3.x
jQuery.prototype.serializeObject=function(){
var a,o,h,i,e;
a=this.serializeArray();
o={};
h=o.hasOwnProperty;
for(i=0;i
下一篇:curl和wget的区别和使用
文章标题:jQuery - 基于serializeArray的serializeObject
文章链接:http://soscw.com/index.php/essay/97257.html