jQuery Validate addMethod()

admin發表於2018-08-26
在閱讀本章節內容之前,建議參閱jQuery Validate驗證規則的實質一章節。

此方法可以新增自定義驗證規則;是validator類的靜態方法。

語法結構:

[JavaScript] 純文字檢視 複製程式碼
function( name, method, message )

引數解析:

(1).name:必需,規定規則的名稱。

(2).method:必需,規則名稱對應的處理函式;此函式可以接受三個引數:

  <1>.value:當前表單元素的value屬性值。

  <2>.element:當前表單元素物件。

  <3>.param:傳遞的引數。

(3).message:可選,規定規則驗證失敗的預設提示資訊。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
ul li{
  list-style:none;
  margin-top:5px;
}
label.success {
  color:green;
}
</style>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script src="http://www.softwhy.com/demo/jQuery/js/jquery.validate.js"></script>
<script src="http://www.softwhy.com/demo/jQuery/js/messages_zh.js"></script>
<script>
$.validator.addMethod("mobile", function (value, element) {
  var reg = /^(((13[0-9]{1})|(15[0-9]{1})|(17[0-9]{1})|(18[0-9]{1}))+\d{8})$/;
  return this.optional(element) || reg.test(value);
},"請輸入正確手機號碼")
$(document).ready(function () {
  $("#myform").validate({
    rules: {
      username: "required",
      pw: "required",
      email: {
        required: true,
        email: true
      },
      tel: "mobile"
    },
    messages: {
      username: "使用者名稱是必須",
      pw: "密碼是必須",
      email: {
        required: "郵箱是必須",
        email:"郵箱格式不正確"
      }
    }
  })
});
</script>
</head>
<body>
<form id="myform">
  <ul>
    <li>姓名:<input type="text" name="username"/></li>
    <li>密碼:<input type="password" name="pw"/></li>
    <li>郵箱:<input type="text" name="email"/></li>
    <li>電話:<input type="text" name="tel" /></li>
    <li>
      <input type="submit" value="提交"/>
      <input type="reset" value="重置"/>
    </li>
  </ul>
</form>
</body>
</html>

上面的程式碼新增一個自定義驗證規則mobile,它實現了驗證手機號碼格式的功能。

此規則沒有傳遞param引數,這個引數非常好理解,比如下面的程式碼:

[HTML] 純文字檢視 複製程式碼
<input type="text" minlength="5" name="username"/>

比如minlength規則,5就是作為param引數傳遞給規則對應的函式。

相關文章