jQuery Validate驗證規則使用演示
在具體介紹外掛具體驗證規則之前,我們先通過一個非常簡單的程式碼例項演示一下此外掛的效果。
初步感受一下它的便利性,順便介紹一下如何使用使用此外掛。
程式碼例項如下:
[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,那麼輸入內容必須是郵箱格式否則會報錯。錯誤資訊預設是顯示在對應表單元素後面的。
相關文章
- jQuery Validate驗證規則的使用jQuery
- jQuery Validate驗證規則實質jQuery
- jQuery Validate新增自定義驗證規則jQuery
- Validator | validate 驗證規則
- jQuery Validate checkbox和radio驗證jQuery
- jquery.validate 表單驗證jQuery
- Jquery Validate自定義驗證規則,一個漢字等於兩個字元長度jQuery字元
- jQuery Validate驗證除錯開關jQuery除錯
- jQuery Validate驗證觸發的方式jQuery
- jQuery Validate忽略指定元素不驗證jQuery
- jQuery Validate非同步ajax方式驗證jQuery非同步
- jQuery Validate驗證上傳檔案大小jQuery
- jQuery Validate對select下拉選單驗證jQuery
- [譯] HTML5 data 屬性規則使用 jQuery Validate 外掛HTMLjQuery
- jQuery Validate驗證確認密碼是否相同jQuery密碼
- jQuery Validate表單驗證基本流程介紹jQuery
- jQuery Validate自定義驗證錯誤資訊jQuery
- jQuery Validate獲取驗證錯誤的數目jQuery
- jQuery Validate表單驗證(使用者註冊簡單應用)jQuery
- mongoose使用validate驗證, 獲取自定義驗證資訊Go
- 關於laravel使用自定義驗證規則後某些規則不生效Laravel
- Between validator常用驗證規則
- 驗證規則大彙集
- laravel: 常用的驗證規則Laravel
- 在.NET Core 中使用 FluentValidation 進行規則驗證
- jQuery Validate highlight()jQuery
- jQuery Validate addMethod()jQuery
- jQuery Validate errorPlacement()jQueryError
- jQuery Validate success()jQuery
- jQuery Validate unhighlight()jQuery
- Laravel 自定義表單驗證-自定義驗證規則Laravel
- validate表單驗證外掛
- jQuery Validate自定義表單元素驗證通過和不通過的樣式jQuery
- Yii2.0 rules驗證規則大全
- vue 實戰表單驗證規則Vue
- jQuery Validate optional()方法jQuery
- ACCESS 關於表設計中,驗證規則的使用技巧
- HTML5 pattern自定義驗證規則HTML