博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
自定义一个序列化表单的方法2+提示语
阅读量:6819 次
发布时间:2019-06-26

本文共 1350 字,大约阅读时间需要 4 分钟。

hot3.png

/** 自定义一个序列化表单的方法* */    $.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

 

转载于:https://my.oschina.net/newgoup/blog/753805

你可能感兴趣的文章