jquery扩展方法(表单数据格式化为json对象)
Posted xy-ouyang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery扩展方法(表单数据格式化为json对象)相关的知识,希望对你有一定的参考价值。
jquery扩展方法(表单数据格式化为json对象)
<script type="text/javascript"> // 将表单数据序列化为一个json对象,例如 {"name":"zs", "age":10} // 使用:var jsonObj = $("#formId").serializeObject(); $.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; }; </script>
以上是关于jquery扩展方法(表单数据格式化为json对象)的主要内容,如果未能解决你的问题,请参考以下文章
将多维表单数据序列化为 JSON 对象数组以使用 application/json