欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jquery form表单序列化为对象的示例代码

程序员文章站 2023-11-07 17:54:58
jquery form表单序列化为对象的示例代码如下: $.fn.serializeobject = function() { var o = {}; var a = t...

jquery form表单序列化为对象的示例代码如下:


$.fn.serializeobject = function() {
var o = {};
var a = this.serializearray();
$.each(a, function() {
if (o[this.name]) {
if (!o[this.name].push) {
o[this.name] = [ o[this.name] ];
}
o[this.name].push(this.value || '');
} else {
o[this.name] = this.value || '';
}
});
return o;
}