将表单序列化为JSON
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将表单序列化为JSON相关的知识,希望对你有一定的参考价值。
usage; $.toJSON($('form').serializeObject());
$.fn.serializeObject = function() { //Prepping for JSON 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; };
以上是关于将表单序列化为JSON的主要内容,如果未能解决你的问题,请参考以下文章