摘要: /** * 自动将form表单封装成json对象 */ $.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. 阅读全文
posted @ 2019-12-19 10:36 Ai-Long 阅读(2499) 评论(0) 推荐(0) 编辑