4
A
回答
1
查看jquery.validate.js的來源,有一個名爲classRuleSettings的變量,它存儲基於類名稱的驗證類型。將它設置爲一個0長度的數組,你會很好。
試試這個():
<form>
<input type="text" class="required"/>
<input type="Submit"/>
</form>
<script type="text/javascript">
$.validator.classRuleSettings = []; //I am not sure about any side effects because of this
$("form").validate();
</script>
0
您可以使用忽略選項
$("form").validate({ignore:".ignore"});
<input type="text" id="fName" class="required ignore"/> <!--fname won't be "required"-->
2
首先,在你的JQuery準備功能設置類爲 '忽略' 或 '需要' 的每個元素:
$("#name").attr("class", "required");
$("#email").attr("class", "ignore");
二,設置驗證函數忽略 '忽略' 類:
$("#form1").validate({ignore: ".ignore"});
這將需要名稱,但忽略電子郵件。
相關問題
- 1. Maya插件屬性驗證
- 2. Spring Form Validation驗證數據庫插入?
- 3. jQuery驗證插件關注
- 4. jQuery關閉表單驗證
- 5. Knockout-Validation插件的獨特值驗證
- 6. 聲明jQuery驗證插件規則 - 屬性與類與代碼
- 7. JQuery驗證插件 - 無法驗證類
- 8. jQuery的「數據」屬性不W3C驗證
- 9. 根據結果驗證關閉jquery對話框
- 10. 使用數據屬性jQuery驗證
- 11. 有條件地關閉MVC3屬性驗證
- 12. 根據元數據類中的屬性進行驗證
- 13. jQuery驗證屬性
- 14. 如何使用authlogic和jQuery Validation插件驗證密碼?
- 15. 使用jQuery Validation插件驗證前4個字符
- 16. Jquery Validation插件驗證日期如20/August/2013 Safari Bug?
- 17. 使用jQuery驗證插件進行數據類型驗證
- 18. jQuery Validation插件沒有捕獲錯誤
- 19. 有條件地打開/關閉DataAnnotation屬性驗證
- 20. jQuery Validation插件 - 自定義消息
- 21. jQuery Mobile Form Validation - 選擇哪個插件?
- 22. Rails根據另一個屬性的值驗證模型屬性
- 23. jQuery驗證自定義的方法從數據屬性
- 24. 如何延遲驗證jquery驗證插件的關鍵事件?
- 25. jQuery插件/驗證
- 26. jquery - 驗證插件
- 27. jQuery驗證插件
- 28. JQuery驗證插件
- 29. JQuery驗證插件
- 30. jquery驗證插件
這是回答問題的唯一答案。 忽略部分與問題無關 – wadoo 2017-05-10 15:27:28