jquery validation API

  1. jquery-validation 使用  
  2.   
  3. 一、用前必備  
  4. 官方網站:http://bassistance.de/jquery-plugins/jquery-plugin-validation/  
  5. API: http://jquery.bassistance.de/api-browser/plugins.html  
  6. 當前版本:1.5.5  
  7. 需要JQuery版本:1.2.6+, 兼容 1.3.2  
  8. <script src="../js/jquery.js" type="text/javascript"></script>  
  9. <script src="../js/jquery.validate.js" type="text/javascript"></script>  
  10.   
  11. 二、默認校驗規則  
  12. (1)required:true               必輸字段  
  13. (2)remote:"check.php"          使用ajax方法調用check.php驗證輸入值  
  14. (3)email:true                  必須輸入正確格式的電子郵件  
  15. (4)url:true                    必須輸入正確格式的網址  
  16. (5)date:true                   必須輸入正確格式的日期  
  17. (6)dateISO:true                必須輸入正確格式的日期(ISO),例如:2009-06-23,1998/01/22 只驗證格式,不驗證有效性  
  18. (7)number:true                 必須輸入合法的數字(負數,小數)  
  19. (8)digits:true                 必須輸入整數  
  20. (9)creditcard:                 必須輸入合法的信用卡號  
  21. (10)equalTo:"#field"           輸入值必須和#field相同  
  22. (11)accept:                    輸入擁有合法後綴名的字符串(上傳文件的後綴)  
  23. (12)maxlength:5                輸入長度最多是5的字符串(漢字算一個字符)  
  24. (13)minlength:10               輸入長度最小是10的字符串(漢字算一個字符)  
  25. (14)rangelength:[5,10]         輸入長度必須介於 5 和 10 之間的字符串")(漢字算一個字符)  
  26. (15)range:[5,10]               輸入值必須介於 5 和 10 之間  
  27. (16)max:5                      輸入值不能大於5  
  28. (17)min:10                     輸入值不能小於10  
  29.   
  30. 三、默認的提示  
  31. messages: {  
  32.     required: "This field is required.",  
  33.     remote: "Please fix this field.",  
  34.     email: "Please enter a valid email address.",  
  35.     url: "Please enter a valid URL.",  
  36.     date: "Please enter a valid date.",  
  37.     dateISO: "Please enter a valid date (ISO).",  
  38.     dateDE: "Bitte geben Sie ein g眉ltiges Datum ein.",  
  39.     number: "Please enter a valid number.",  
  40.     numberDE: "Bitte geben Sie eine Nummer ein.",  
  41.     digits: "Please enter only digits",  
  42.     creditcard: "Please enter a valid credit card number.",  
  43.     equalTo: "Please enter the same value again.",  
  44.     accept: "Please enter a value with a valid extension.",  
  45.     maxlength: $.validator.format("Please enter no more than {0} characters."),  
  46.     minlength: $.validator.format("Please enter at least {0} characters."),  
  47.     rangelength: $.validator.format("Please enter a value between {0} and {1} characters long."),  
  48.     range: $.validator.format("Please enter a value between {0} and {1}."),  
  49.     max: $.validator.format("Please enter a value less than or equal to {0}."),  
  50.     min: $.validator.format("Please enter a value greater than or equal to {0}.")  
  51. },  
  52. 如需要修改,可在js代碼中加入:  
  53. jQuery.extend(jQuery.validator.messages, {  
  54.         required: "必選字段",  
  55. remote: "請修正該字段",  
  56. email: "請輸入正確格式的電子郵件",  
  57. url: "請輸入合法的網址",  
  58. date: "請輸入合法的日期",  
  59. dateISO: "請輸入合法的日期 (ISO).",  
  60. number: "請輸入合法的數字",  
  61. digits: "只能輸入整數",  
  62. creditcard: "請輸入合法的信用卡號",  
  63. equalTo: "請再次輸入相同的值",  
  64. accept: "請輸入擁有合法後綴名的字符串",  
  65. maxlength: jQuery.validator.format("請輸入一個長度最多是 {0} 的字符串"),  
  66. minlength: jQuery.validator.format("請輸入一個長度最少是 {0} 的字符串"),  
  67. rangelength: jQuery.validator.format("請輸入一個長度介於 {0} 和 {1} 之間的字符串"),  
  68. range: jQuery.validator.format("請輸入一個介於 {0} 和 {1} 之間的值"),  
  69. max: jQuery.validator.format("請輸入一個最大爲 {0} 的值"),  
  70. min: jQuery.validator.format("請輸入一個最小爲 {0} 的值")  
  71. });  
  72. 推薦做法,將此文件放入messages_cn.js中,在頁面中引入  
  73. <script src="../js/messages_cn.js" type="text/javascript"></script>  
  74.   
  75. 四、使用方式  
  76. 1.將校驗規則寫到控件中  
  77. <script src="../js/jquery.js" type="text/javascript"></script>  
  78. <script src="../js/jquery.validate.js" type="text/javascript"></script>  
  79. <script src="./js/jquery.metadata.js" type="text/javascript"></script>  
  80. $().ready(function() {  
  81. $("#signupForm").validate();  
  82. });  
  83.   
  84. <form id="signupForm" method="get" action="">  
  85.     <p>  
  86.         <label for="firstname">Firstname</label>  
  87.         <input id="firstname" name="firstname" class="required" />  
  88.     </p>  
  89. <p>  
  90. <label for="email">E-Mail</label>  
  91. <input id="email" name="email" class="required email" />  
  92. </p>  
  93. <p>  
  94. <label for="password">Password</label>  
  95. <input id="password" name="password" type="password" class="{required:true,minlength:5}" />  
  96. </p>  
  97. <p>  
  98. <label for="confirm_password">確認密碼</label>  
  99. <input id="confirm_password" name="confirm_password" type="password" class="{required:true,minlength:5,equalTo:'#password'}" />  
  100. </p>  
  101.     <p>  
  102.         <input class="submit" type="submit" value="Submit"/>  
  103.     </p>  
  104. </form>  
  105. 使用class="{}"的方式,必須引入包:jquery.metadata.js  
  106. 可以使用如下的方法,修改提示內容:  
  107. class="{required:true,minlength:5,messages:{required:'請輸入內容'}}"  
  108. 在使用equalTo關鍵字時,後面的內容必須加上引號,如下代碼:  
  109. class="{required:true,minlength:5,equalTo:'#password'}"  
  110. 另外一個方式,使用關鍵字:meta(爲了元數據使用其他插件你要包裝 你的驗證規則 在他們自己的項目中可以用這個特殊的選項)  
  111. Tell the validation plugin to look inside a validate-property in metadata for validation rules.  
  112. 例如:  
  113. meta: "validate"  
  114. <input id="password" name="password" type="password" class="{validate:{required:true,minlength:5}}" />  
  115.   
  116. 再有一種方式:  
  117. $.metadata.setType("attr", "validate");  
  118. 這樣可以使用validate="{required:true}"的方式,或者class="required",但class="{required:true,minlength:5}"將不起作用  
  119.   
  120. 2.將校驗規則寫到代碼中  
  121.   
  122. $().ready(function() {  
  123. $("#signupForm").validate({  
  124.         rules: {  
  125.    firstname: "required",  
  126.    email: {  
  127.     required: true,  
  128.     email: true  
  129.    },  
  130.    password: {  
  131.     required: true,  
  132.     minlength: 5  
  133.    },  
  134.    confirm_password: {  
  135.     required: true,  
  136.     minlength: 5,  
  137.     equalTo: "#password"  
  138.    }  
  139. },  
  140.         messages: {  
  141.    firstname: "請輸入姓名",  
  142.    email: {  
  143.     required: "請輸入Email地址",  
  144.     email: "請輸入正確的email地址"  
  145.    },  
  146.    password: {  
  147.     required: "請輸入密碼",  
  148.     minlength: jQuery.format("密碼不能小於{0}個字符")  
  149.    },  
  150.    confirm_password: {  
  151.     required: "請輸入確認密碼",  
  152.     minlength: "確認密碼不能小於5個字符",  
  153.     equalTo: "兩次輸入密碼不一致不一致"  
  154.    }  
  155. }  
  156.     });  
  157. });  
  158. //messages處,如果某個控件沒有message,將調用默認的信息  
  159.   
  160. <form id="signupForm" method="get" action="">  
  161.     <p>  
  162.         <label for="firstname">Firstname</label>  
  163.         <input id="firstname" name="firstname" />  
  164.     </p>  
  165. <p>  
  166. <label for="email">E-Mail</label>  
  167. <input id="email" name="email" />  
  168. </p>  
  169. <p>  
  170. <label for="password">Password</label>  
  171. <input id="password" name="password" type="password" />  
  172. </p>  
  173. <p>  
  174. <label for="confirm_password">確認密碼</label>  
  175. <input id="confirm_password" name="confirm_password" type="password" />  
  176. </p>  
  177.     <p>  
  178.         <input class="submit" type="submit" value="Submit"/>  
  179.     </p>  
  180. </form>  
  181. required:true 必須有值  
  182. required:"#aa:checked"表達式的值爲真,則需要驗證  
  183. required:function(){}返回爲真,表時需要驗證  
  184. 後邊兩種常用於,表單中需要同時填或不填的元素  
  185.   
  186. 五、常用方法及注意問題  
  187. 1.用其他方式替代默認的SUBMIT  
  188. $().ready(function() {  
  189. $("#signupForm").validate({  
  190.         submitHandler:function(form){  
  191.             alert("submitted");     
  192.             form.submit();  
  193.         }      
  194.     });  
  195. });  
  196. 可以設置validate的默認值,寫法如下:  
  197. $.validator.setDefaults({  
  198. submitHandler: function(form) { alert("submitted!");form.submit(); }  
  199. });  
  200. 如果想提交表單, 需要使用form.submit()而不要使用$(form).submit()  
  201.   
  202. 2.debug,如果這個參數爲true,那麼表單不會提交,只進行檢查,調試時十分方便  
  203. $().ready(function() {  
  204. $("#signupForm").validate({  
  205.         debug:true  
  206.     });  
  207. });  
  208. 如果一個頁面中有多個表單,用  
  209. $.validator.setDefaults({  
  210.    debug: true  
  211. })  
  212.   
  213. 3.ignore:忽略某些元素不驗證  
  214. ignore: ".ignore"  
  215.   
  216. 4.errorPlacement:Callback Default: 把錯誤信息放在驗證的元素後面  
  217. 指明錯誤放置的位置,默認情況是:error.appendTo(element.parent());即把錯誤信息放在驗證的元素後面  
  218. errorPlacement: function(error, element) {    
  219.     error.appendTo(element.parent());    
  220. }  
  221. //示例:  
  222. <tr>  
  223.     <td class="label"><label id="lfirstname" for="firstname">First Name</label></td>  
  224.     <td class="field"><input id="firstname" name="firstname" type="text" value="" maxlength="100" /></td>  
  225.     <td class="status"></td>  
  226. </tr>  
  227. <tr>  
  228.     <td style="padding-right: 5px;">  
  229.         <input id="dateformat_eu" name="dateformat" type="radio" value="0" />  
  230.         <label id="ldateformat_eu" for="dateformat_eu">14/02/07</label>  
  231.     </td>  
  232.     <td style="padding-left: 5px;">  
  233.         <input id="dateformat_am" name="dateformat" type="radio" value="1" />  
  234.         <label id="ldateformat_am" for="dateformat_am">02/14/07</label>  
  235.     </td>  
  236.     <td></td>  
  237. </tr>  
  238. <tr>  
  239.     <td class="label"> </td>  
  240.     <td class="field" colspan="2">  
  241.         <div id="termswrap">  
  242.             <input id="terms" type="checkbox" name="terms" />  
  243.             <label id="lterms" for="terms">I have read and accept the Terms of Use.</label>  
  244.         </div>  
  245.     </td>  
  246. </tr>  
  247. errorPlacement: function(error, element) {  
  248.     if ( element.is(":radio") )  
  249.         error.appendTo( element.parent().next().next() );  
  250.     else if ( element.is(":checkbox") )  
  251.         error.appendTo ( element.next() );  
  252.     else  
  253.         error.appendTo( element.parent().next() );  
  254. }  
  255. 代碼的作用是:一般情況下把錯誤信息顯示在<td class="status"></td>中,如果是radio顯示在<td></td>中,如果是checkbox顯示在內容的後面  
  256. errorClass:String Default: "error"  
  257. 指定錯誤提示的css類名,可以自定義錯誤提示的樣式  
  258. errorElement:String Default: "label"  
  259. 用什麼標籤標記錯誤,默認的是label你可以改成em  
  260. errorContainer:Selector  
  261. 顯示或者隱藏驗證信息,可以自動實現有錯誤信息出現時把容器屬性變爲顯示,無錯誤時隱藏,用處不大  
  262. errorContainer: "#messageBox1, #messageBox2"  
  263. errorLabelContainer:Selector  
  264. 把錯誤信息統一放在一個容器裏面。  
  265. wrapper:String  
  266. 用什麼標籤再把上邊的errorELement包起來  
  267. 一般這三個屬性同時使用,實現在一個容器內顯示所有錯誤提示的功能,並且沒有信息時自動隱藏  
  268. errorContainer: "div.error",  
  269. errorLabelContainer: $("#signupForm div.error"),  
  270. wrapper: "li"  
  271.   
  272. 設置錯誤提示的樣式,可以增加圖標顯示  
  273. input.error { border: 1px solid red; }  
  274. label.error {  
  275. background:url("./demo/images/unchecked.gif") no-repeat 0px 0px;  
  276. padding-left: 16px;  
  277. padding-bottom: 2px;  
  278. font-weight: bold;  
  279. color: #EA5200;  
  280. }  
  281. label.checked {  
  282. background:url("./demo/images/checked.gif") no-repeat 0px 0px;  
  283. }  
  284. success:String,Callback  
  285. 要驗證的元素通過驗證後的動作,如果跟一個字符串,會當做一個css類,也可跟一個函數  
  286. success: function(label) {  
  287.     // set   as text for IE  
  288.     label.html(" ").addClass("checked");  
  289.     //label.addClass("valid").text("Ok!")  
  290. }  
  291. 添加"valid" 到驗證元素, 在CSS中定義的樣式<style>label.valid {}</style>  
  292. success: "valid"  
  293.   
  294.   
  295. nsubmit: Boolean Default: true  
  296. 提交時驗證. 設置唯false就用其他方法去驗證  
  297. onfocusout:Boolean Default: true  
  298. 失去焦點是驗證(不包括checkboxes/radio buttons)  
  299. onkeyup:Boolean Default: true  
  300. 在keyup時驗證.  
  301. onclick:Boolean Default: true  
  302. 在checkboxes 和 radio 點擊時驗證  
  303. focusInvalid:Boolean Default: true  
  304. 提交表單後,未通過驗證的表單(第一個或提交之前獲得焦點的未通過驗證的表單)會獲得焦點  
  305. focusCleanup:Boolean Default: false  
  306. 如果是true那麼當未通過驗證的元素獲得焦點時,移除錯誤提示。避免和 focusInvalid 一起用  
  307.   
  308. // 重置表單  
  309. $().ready(function() {  
  310. var validator = $("#signupForm").validate({  
  311.         submitHandler:function(form){  
  312.             alert("submitted");     
  313.             form.submit();  
  314.         }      
  315.     });  
  316.     $("#reset").click(function() {  
  317.         validator.resetForm();  
  318.     });  
  319. });  
  320.   
  321. remote:URL  
  322. 使用ajax方式進行驗證,默認會提交當前驗證的值到遠程地址,如果需要提交其他的值,可以使用data選項  
  323. remote: "check-email.php"  
  324. remote: {  
  325.     url: "check-email.php",     //後臺處理程序  
  326.     type: "post",               //數據發送方式  
  327.     dataType: "json",           //接受數據格式     
  328.     data: {                     //要傳遞的數據  
  329.         username: function() {  
  330.             return $("#username").val();  
  331.         }  
  332.     }  
  333. }  
  334.   
  335. 遠程地址只能輸出 "true" 或 "false",不能有其它輸出  
  336.   
  337.   
  338. addMethod:name, method, message  
  339. 自定義驗證方法  
  340.   
  341. // 中文字兩個字節  
  342. jQuery.validator.addMethod("byteRangeLength", function(value, element, param) {  
  343.     var length = value.length;  
  344.     for(var i = 0; i < value.length; i++){  
  345.         if(value.charCodeAt(i) > 127){  
  346.             length++;  
  347.         }  
  348.     }  
  349. return this.optional(element) || ( length >= param[0] && length <= param[1] );     
  350. }, $.validator.format("請確保輸入的值在{0}-{1}個字節之間(一箇中文字算2個字節)"));  
  351.   
  352. // 郵政編碼驗證     
  353. jQuery.validator.addMethod("isZipCode", function(value, element) {     
  354.     var tel = /^[0-9]{6}$/;  
  355.     return this.optional(element) || (tel.test(value));  
  356. }, "請正確填寫您的郵政編碼");  
  357.   
  358. radio和checkbox、select的驗證  
  359. radio的required表示必須選中一個  
  360. <input type="radio" id="gender_male" value="m" name="gender" class="{required:true}" />  
  361. <input type="radio" id="gender_female" value="f" name="gender"/>  
  362. checkbox的required表示必須選中  
  363. <input type="checkbox" class="checkbox" id="agree" name="agree" class="{required:true}" />  
  364. checkbox的minlength表示必須選中的最小個數,maxlength表示最大的選中個數,rangelength:[2,3]表示選中個數區間  
  365. <input type="checkbox" class="checkbox" id="spam_email" value="email" name="spam[]" class="{required:true, minlength:2}" />  
  366. <input type="checkbox" class="checkbox" id="spam_phone" value="phone" name="spam[]" />  
  367. <input type="checkbox" class="checkbox" id="spam_mail" value="mail" name="spam[]" />  
  368.   
  369. select的required表示選中的value不能爲空  
  370. <select id="jungle" name="jungle" title="Please select something!" class="{required:true}">  
  371.     <option value=""></option>  
  372.     <option value="1">Buga</option>  
  373.     <option value="2">Baga</option>  
  374.     <option value="3">Oi</option>  
  375. </select>  
  376. select的minlength表示選中的最小個數(可多選的select),maxlength表示最大的選中個數,rangelength:[2,3]表示選中個數區間  
  377. <select id="fruit" name="fruit" title="Please select at least two fruits" class="{required:true, minlength:2}" multiple="multiple">  
  378.     <option value="b">Banana</option>  
  379.     <option value="a">Apple</option>  
  380.     <option value="p">Peach</option>  
  381.     <option value="t">Turtle</option>  
  382. </select>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章