jquery怎样把表单中的值转换成json对象
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery怎样把表单中的值转换成json对象相关的知识,希望对你有一定的参考价值。
////扩展添加序列化函数,表单序列化json对象$.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;
;
//调用:$('form表单').serializeObject(); 参考技术A jquery提供了 serializeArray() 方法 将form表单数据转换为 json数据格式 以下代码可以直接粘贴运行: (function()$('#J_btn').on('click', function()var data = $('form').serializeArray();console.log(data););)();
以上是关于jquery怎样把表单中的值转换成json对象的主要内容,如果未能解决你的问题,请参考以下文章