//注册功能script========================================= //input聚焦失焦,通过id获取 $("#uname1").focus(function(){ if($(this).val().length!=0){ $(this).parent().next("div").text("支持中文,字母,数字,'-','_'的多种组合"); } }); $("#uname1").blur(function(){ if($(this).val().length==0){ flag1=false; $(this).parent().next("div").text(""); $(this).parent().next("div").css("color",'#ccc'); }else if($(this).val().length>0 && $(this).val().length<4){ flag1=false; $(this).parent().next("div").text("长度只能在4-20个字符之间"); $(this).parent().next("div").css("color",'red'); }else if($(this).val().length>=4&& !isNaN($(this).val())){ flag1=false; $(this).parent().next("div").text("用户名不能为纯数字"); $(this).parent().next("div").css("color",'red'); }else{ flag1=true; $(this).parent().next("div").text(""); } }); //密码 $("#upass1").focus(function(){ if($(this).val().length==0){ $(this).parent().next("div").text("建议使用字母、数字和符号两种以上的组合,6-20个字符"); } }); $("#upass1").blur(function(){ if($(this).val().length==0){ flag2=false; $(this).parent().next("div").text(""); $(this).parent().next("div").css("color",'#ccc'); }else if($(this).val().length>0 && $(this).val().length<4){ flag2=false; $(this).parent().next("div").text("长度只能在4-16个字符之间"); $(this).parent().next("div").css("color",'red'); }else{ flag2=true; $(this).parent().next("div").text(""); } });
1 2 3 4 5 67 8 9 10 11 12 13 14 19 20 23 24 2559 60 612657 58 55 5662111 112 113 114 115 116 117 118 119 120 229 230 23163109 110 107 108