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;
}
上一篇: 一季度iPhone在全球智能手机市场份额下降 被华为超越
下一篇: 夏天榴莲能冷冻吗