jQuery Validate自定義驗證錯誤資訊

admin發表於2018-08-05
預設的驗證資訊雖然能夠滿足一定的需求。

畢竟不夠靈活,因為實際專案的要求是千變萬化的,所以自定義驗證資訊尤為重要。

[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;
}
</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>
$(document).ready(function () {
  $("#myform").validate();
});
</script>
</head>
<body>
<form id="myform">
  <ul>
    <li>姓名:<input type="text" name="username" required/></li>
    <li>密碼:<input type="password" name="pw" required/></li>
    <li>郵箱:<input type="email" name="email" required /></li>
    <li>
      <input type="submit" value="提交"/>
      <input type="reset" value="重置"/>
    </li>
  </ul>
</form>
</body>
</html>

上面的程式碼是採用的預設驗證提示資訊,下面介紹一下如何自定義預設提示資訊。

程式碼例項如下:

[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;
}
</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>
$(document).ready(function () {
  $("#myform").validate({
    rules: {
      username: "required",
      pw: "required",
      email: "required"
    },
    messages: {
      name: "使用者名稱是必填專案",
      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="email" name="email"/></li>
    <li>
      <input type="submit" value="提交"/>
      <input type="reset" value="重置"/>
    </li>
  </ul>
</form>
</body>
</html>

上面的程式碼實現了自定義驗證資訊提示功能,下面介紹一下它的實現。

特別說明:驗證規則既可以寫在標籤之內,也可以寫在規則物件之中:

[JavaScript] 純文字檢視 複製程式碼
rules: {
  username: "required",
  pw: "required",
  email: "required"
}

屬性名稱是表單元素name值,屬性值則是要進行驗證的規則。

如果表單元素只有一個驗證規則,那麼後面直接跟規則的名稱字串即可(規則也是有限制的,那就是值必須是布林值,maxlength這樣的規則不可以),如果要是有多個規則,那麼也需要使用物件:

[JavaScript] 純文字檢視 複製程式碼
rules: {
  username: {
    required: true,
    minlength: 3,
    maxlength: 15,
  }
}

定義驗證提示資訊的方式和定義驗證規則是一樣的:

[JavaScript] 純文字檢視 複製程式碼
messages: {
  name: "使用者名稱是必填專案",
  pw: "密碼是必填專案",
  email: {
    required: "郵箱是必填專案",
    email:"郵箱格式不正確"
  }
}

相關文章