jQuery Validate驗證除錯開關
寫程式碼難免要進行除錯,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 () { $("#one").validate({ debug: true, rules: { username: "required" } }); }); </script> </head> <body> <form id="one"action="http://www.softwhy.com/"> <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] 純文字檢視 複製程式碼debug: true
上面的程式碼設定只會在當前驗證例項下有效,如果想在全域性範圍內設定,可以使用如下程式碼:
[JavaScript] 純文字檢視 複製程式碼$.validator.setDefaults({ debug: true })
更多內容可以參閱jQuery Validate全域性配置和例項配置一章節。
相關文章
- jQuery Validate自定義驗證錯誤資訊jQuery
- jquery validate 手工驗證方法jQuery
- 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對select下拉選單驗證jQuery
- jQuery Validate驗證確認密碼是否相同jQuery密碼
- jQuery Validate checkbox和radio驗證jQuery
- jquery.validate失去焦點時就驗證jQuery
- jQuery外掛之驗證控制元件jquery.validate.jsjQuery控制元件JS
- jQuery驗證控制元件jquery.validate.js的使用介紹jQuery控制元件JS
- jquery.validate驗證text,checkbox,radio,selected薦jQuery
- jQuery Validate表單驗證(使用者註冊簡單應用)jQuery
- mongoose使用validate驗證, 獲取自定義驗證資訊Go
- validate表單驗證外掛
- Laravel 解決 validate 驗證 Ajax 表單請求驗證失敗報 422 錯誤Laravel
- 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
- jQuery Validate自定義錯誤資訊顯示位置jQuery
- jquery 表單驗證jQuery
- jquery驗證時間jQuery
- MVC驗證08-jQuery非同步驗證MVCjQuery非同步