序列化问题
Posted beimingbingpo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了序列化问题相关的知识,希望对你有一定的参考价值。
serialize()对于未选中的checkbox,radio是获取不到值得。
$.fn.all_serialize = function () { var a = this.serializeArray(); var $radio = $(‘input[type=radio],input[type=checkbox]‘, this); var temp = {}; $.each($radio, function () { if (!temp.hasOwnProperty(this.name)) { if ($("input[name=‘" + this.name + "‘]:checked").length == 0) { temp[this.name] = ""; a.push({name: this.name, value:0}); } } }); return a; }; $("#form_id").all_serialize();
以上是关于序列化问题的主要内容,如果未能解决你的问题,请参考以下文章