jQuery Validate驗證規則使用演示

admin發表於2018-08-26
在具體介紹外掛具體驗證規則之前,我們先通過一個非常簡單的程式碼例項演示一下此外掛的效果。

初步感受一下它的便利性,順便介紹一下如何使用使用此外掛。

程式碼例項如下:

[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>

上面的程式碼利用Validate驗證外掛實現了表單簡單的驗證功能,當然可以更為複雜。

由於此外掛是基於jQuery實現的,所以要引入jQuery庫,當然也需要引入Validate外掛本身,如下:

[HTML] 純文字檢視 複製程式碼
<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>

驗證提示資訊預設是使用英文,如果要改成中文的,要引入對應的語言補丁即可,如下:

[HTML] 純文字檢視 複製程式碼
<script src="http://www.softwhy.com/demo/jQuery/js/messages_zh.js"></script>

Validate也支援HTML5的特性,如果表單項是必填的,只要在對應元素中新增required屬性即可;type屬性值是email,那麼輸入內容必須是郵箱格式否則會報錯。錯誤資訊預設是顯示在對應表單元素後面的。

相關文章