欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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

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

本文實例為大家分享了jQuery實現(xià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;
    // 驗證用戶名
    $('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');
     }
      
    });
 
    //驗證密碼
    $('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');
     }
      
    });
 
    //驗證確認密碼
     $('input[name="repass"]').focus(function(){
     $(this).next().text('輸入的確認密碼要和上面的密碼一致,規(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('輸入的確認密碼要和上面的密碼一致,規(guī)則也要相同').removeClass('state1').addClass('state3');
     }
      
    });
 
    //驗證郵箱
    $('input[name="email"]').focus(function(){
     $(this).next().text('請輸入正確的EMAIL格式').removeClass('state1').addClass('state2');
    }).blur(function(){
     if($(this).val().search(/\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/)==-1){
      $(this).next().text('請輸入正確的EMAIL格式').removeClass('state1').addClass('state3');
     }else{     
      $(this).next().text('輸入成功').removeClass('state1').addClass('state4');
      ok4=true;
     }
      
    });
 
    //提交按鈕,所有驗證通過方可提交
 
    $('.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'>請輸入用戶名</span><br/><br/>
 密  碼:<input type="password" name="password">
    <span class='state1'>請輸入密碼</span><br/><br/>
 確認密碼:<input type="password" name="repass">
    <span class='state1'>請輸入確認密碼</span><br/><br/>
 郵  箱:<input type="text" name="email">
    <span class='state1'>請輸入郵箱</span><br/><br/> 
 <a href="javascript:;" rel="external nofollow" ><img class='submit' type='image' src='./images/reg.gif' /></a>
</form>
</body>
</html>

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

相關(guān)文章

最新評論