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({ debug: true, ignore: ".ant", rules: { username: "required", pw: "required", email: { required: true, email:true } }, messages: { name: "使用者名稱是必填專案", pw: "密碼是必填專案", email: { required: "郵箱是必填專案", email:"郵箱格式不正確" } } }); $("#bt").click(function () { $("#myform ul li").eq(2).find("input").addClass("ant"); }) }); </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="submit" value="提交"/> <input type="reset" value="重置"/> </li> </ul> </form> <input type="button" id="bt" value="新增樣式類"/> </body> </html>
通過配置ignore即可實現,屬性值是一個class樣式類,具有此類的表單元素就會忽略驗證。
上面的程式碼是在當前驗證例項中進行配置,如果需要在全域性配置,可以使用如下方式:
[JavaScript] 純文字檢視 複製程式碼$.validator.setDefaults({ ignore: ".ant" })
更多內容可以參閱jQuery Validate全域性配置和例項配置一章節。
相關文章
- jquery validate 手工驗證方法jQuery
- jquery.validate 表單驗證jQuery
- jQuery Validate非同步ajax方式驗證jQuery非同步
- jQuery Validate驗證規則的使用jQuery
- jQuery Validate驗證規則使用演示jQuery
- jQuery Validate驗證規則實質jQuery
- jQuery Validate驗證觸發的方式jQuery
- jQuery Validate驗證除錯開關jQuery除錯
- jQuery Validate自定義驗證成功資訊jQuery
- jQuery Validate驗證上傳檔案大小jQuery
- jQuery Validate自定義驗證錯誤資訊jQuery
- jQuery Validate新增自定義驗證規則jQuery
- jQuery Validate表單驗證基本流程介紹jQuery
- jQuery Validate對select下拉選單驗證jQuery
- jQuery Validate驗證確認密碼是否相同jQuery密碼
- jQuery Validate checkbox和radio驗證jQuery
- jquery.validate失去焦點時就驗證jQuery
- jQuery外掛之驗證控制元件jquery.validate.jsjQuery控制元件JS
- jQuery Validate獲取驗證錯誤的數目jQuery
- jQuery驗證控制元件jquery.validate.js的使用介紹jQuery控制元件JS
- jquery.validate驗證text,checkbox,radio,selected薦jQuery
- jQuery Validate表單驗證(使用者註冊簡單應用)jQuery
- mongoose使用validate驗證, 獲取自定義驗證資訊Go
- validate表單驗證外掛
- rman備份驗證(之restore validate)REST
- jQuery Validate自定義表單元素驗證通過和不通過的樣式jQuery
- MVC學習筆記之:ASP.NET MVC的客戶端驗證-jQuery.validate驗證結合Model驗證中的實現MVC筆記ASP.NET客戶端jQuery
- jquery 驗證emailjQueryAI
- jQuery Validate success()jQuery
- Jquery--ValidatejQuery
- 讓你的 validate 支援場景驗證
- Thinkphp5基礎——11 validate驗證PHP
- jquery.validate中文API和應用例項(一)簡單驗證--絕對可用jQueryAPI
- Laravel 自定義表單請求驗證忽略某些欄位驗證Laravel
- jquery 表單驗證jQuery
- jquery驗證時間jQuery
- MVC驗證08-jQuery非同步驗證MVCjQuery非同步
- Jquery Validate自定義驗證規則,一個漢字等於兩個字元長度jQuery字元