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对象)的主要内容,如果未能解决你的问题,请参考以下文章

JQuery扩展方法实现Form表单与Json互相转换

将多维表单数据序列化为 JSON 对象数组以使用 application/json

jquery 表单序列化

使用 js/jquery 将 JSON 字符串格式化为 textarea 中的可读格式

使用动态输入将表单数据序列化为 JSON

玩转web之json---将表单通过serialize()方法获取的值转成json