2012-10-22 247 views
1

我需要編寫自己的javascript規則來驗證表單。編寫自定義驗證規則

我有一個名爲code的字段,我需要一個特殊的驗證: 該字段只有13個職位。第一個和第二個是字母,倒數第二個是字母。其他職位(3-11)是數字。 那麼,我怎樣才能驗證這個領域與這些條件?

<html> 
    <head> 
    <script type="text/javascript" 
     src="javascript/jquery-1.8.2.min.js" > 
    </script> 
    <script type="text/javascript" 
     src="javascript/jquery.validate.min.js" > 
    </script> 
    </head> 
    <body> 
    <form id="meu_form" action="" method="post" > 
     Code:<br /> 
     <input type="text" name="code" id="code" /><br /> 
     <input type="submit" value="Save" /> 
    </form> 
    </body> 
    <script type="text/javascript"> 
    jQuery(document).ready(function(){ 
     jQuery('#meu_form').validate({ 
      rules:{ 
       code:{ 
        required: true, 
        minlength: 13 
        maxlength: 13 
       } 
      }, 
      messages:{ 
       code:{ 
        required: "Required field.", 
        minlength: "Exactly 13 length." 
       } 
      } 

     }); 
    }); 
    </script> 
</html> 
+0

您可以編寫自己的驗證功能,你都知道嗎? – thatidiotguy

回答

1

使用正則表達式:

/^[A-Z]{2}[0-9]{10}[A-Z]$/i 
+0

非常有趣。但我怎麼能用Javascript做到這一點。我會搜索一個litle(現在我不能),但如果對你很容易,請給我寫一些代碼。多謝。 – GarouDan

+0

與此[問題](http://stackoverflow.com/questions/280759/jquery-validate-how-to-add-a-rule-for-regular-expression-validation/709358#709358)和您的正則表達式的作品。多謝。 – GarouDan