码迷,mamicode.com
首页 > 其他好文 > 详细

序列化问题

时间:2018-10-09 11:43:37      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:serialize   ==   code   _id   问题   UNC   property   temp   fun   

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();

 

序列化问题

标签:serialize   ==   code   _id   问题   UNC   property   temp   fun   

原文地址:https://www.cnblogs.com/beimingbingpo/p/9759234.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!