亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

jQuery實(shí)現(xiàn)所有驗(yàn)證通過(guò)方可提交的表單驗(yàn)證

 更新時(shí)間:2017年11月21日 10:33:11   作者:吧主  
這篇文章主要為大家詳細(xì)介紹了jQuery實(shí)現(xiàn)表單驗(yàn)證,所有驗(yàn)證通過(guò)方可提交,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了jQuery實(shí)現(xiàn)表單驗(yàn)證的具體代碼,供大家參考,具體內(nèi)容如下

<html>
 <head>
  <meta http-equiv="content-type" content="text/html; charset=utf-8">
  <title>Reg</title>
  <style>
   .state1{
    color:#aaa;
   }
   .state2{
    color:#000;
   }
   .state3{
    color:red;
   }
   .state4{
    color:green;
   }
  </style>
  <script src="jquery.js"></script>
  <script>
   $(function(){
 
    var ok1=false;
    var ok2=false;
    var ok3=false;
    var ok4=false;
    // 驗(yàn)證用戶名
    $('input[name="username"]').focus(function(){
     $(this).next().text('用戶名應(yīng)該為3-20位之間').removeClass('state1').addClass('state2');
    }).blur(function(){
     if($(this).val().length >= 3 && $(this).val().length <=12 && $(this).val()!=''){
      $(this).next().text('輸入成功').removeClass('state1').addClass('state4');
      ok1=true;
     }else{
      $(this).next().text('用戶名應(yīng)該為3-20位之間').removeClass('state1').addClass('state3');
     }
      
    });
 
    //驗(yàn)證密碼
    $('input[name="password"]').focus(function(){
     $(this).next().text('密碼應(yīng)該為6-20位之間').removeClass('state1').addClass('state2');
    }).blur(function(){
     if($(this).val().length >= 6 && $(this).val().length <=20 && $(this).val()!=''){
      $(this).next().text('輸入成功').removeClass('state1').addClass('state4');
      ok2=true;
     }else{
      $(this).next().text('密碼應(yīng)該為6-20位之間').removeClass('state1').addClass('state3');
     }
      
    });
 
    //驗(yàn)證確認(rèn)密碼
     $('input[name="repass"]').focus(function(){
     $(this).next().text('輸入的確認(rèn)密碼要和上面的密碼一致,規(guī)則也要相同').removeClass('state1').addClass('state2');
    }).blur(function(){
     if($(this).val().length >= 6 && $(this).val().length <=20 && $(this).val()!='' && $(this).val() == $('input[name="password"]').val()){
      $(this).next().text('輸入成功').removeClass('state1').addClass('state4');
      ok3=true;
     }else{
      $(this).next().text('輸入的確認(rèn)密碼要和上面的密碼一致,規(guī)則也要相同').removeClass('state1').addClass('state3');
     }
      
    });
 
    //驗(yàn)證郵箱
    $('input[name="email"]').focus(function(){
     $(this).next().text('請(qǐng)輸入正確的EMAIL格式').removeClass('state1').addClass('state2');
    }).blur(function(){
     if($(this).val().search(/\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/)==-1){
      $(this).next().text('請(qǐng)輸入正確的EMAIL格式').removeClass('state1').addClass('state3');
     }else{     
      $(this).next().text('輸入成功').removeClass('state1').addClass('state4');
      ok4=true;
     }
      
    });
 
    //提交按鈕,所有驗(yàn)證通過(guò)方可提交
 
    $('.submit').click(function(){
     if(ok1 && ok2 && ok3 && ok4){
      $('form').submit();
     }else{
      return false;
     }
    });
     
   });
  </script>
 </head>
<body>
 
<form action='do.php' method='post' >
 用 戶 名:<input type="text" name="username">
    <span class='state1'>請(qǐng)輸入用戶名</span><br/><br/>
 密  碼:<input type="password" name="password">
    <span class='state1'>請(qǐng)輸入密碼</span><br/><br/>
 確認(rèn)密碼:<input type="password" name="repass">
    <span class='state1'>請(qǐng)輸入確認(rèn)密碼</span><br/><br/>
 郵  箱:<input type="text" name="email">
    <span class='state1'>請(qǐng)輸入郵箱</span><br/><br/> 
 <a href="javascript:;" rel="external nofollow" ><img class='submit' type='image' src='./images/reg.gif' /></a>
</form>
</body>
</html>

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論