/** 自定义一个序列化表单的方法* */ $.fn.serializeObject = function(a) { var o = {}; o.flag=false; var grounp=[]; if(a == 1){ $(this).find("input").each(function(index) { if ($(this).attr("name") != undefined) { var _val = $(this).val().length; var must = $(this).data('must'); var _tips = $(this).data('tip'); var max = $(this).data('max'); if ($(this).attr("type") == "text" || $(this).attr("type") == "password" || $(this).attr("type") == "hidden") { $(this).siblings('.v_tips').remove(); if(_val > max){ //超过有效长度 $(this).after(''+_tips+''); o.flag=true; } if( must == 'true' && _val == 0){ //必填 if(_tips != undefined){ $(this).after(''+_tips+' max){ $(this).after(''+_tips+' max){ $(this).after(''+_tips+'
html