jquery validate 使用幫助

咱們WEB開發,常常會到表單的提交,說到表單的提交,就不能不提到表單的校驗。
說實話若是本身寫表單的校驗,實在是頭疼,一堆JS代碼,還要考慮提醒信息、提醒信息是否是美觀等。但Jquery提供這一個插件,能夠減小開發表單校驗的開發,同時又很美觀,他就Jquery Validation這個插件,官方地址:http://jqueryvalidation.org/,下面我就簡單對Jquery Validation的使用進行簡單介紹:
1、引入的JS文件:
    一、Jquery的JS文件:如<script src="js/jquery1.9.1.min.js" type="text/javascript"></script>
   二、Jquery Validation的文件:如<script src="js/jquery.validate.js" type="text/javascript"></script>
javascript

2、校驗規則:
php

(1)required:true          必輸字段
(2)remote:"check.php"    
使用ajax方法調用check.php驗證輸入值
(3)email:true            
必須輸入正確格式的電子郵件
(4)url:true              
必須輸入正確格式的網址
(5)date:true             
必須輸入正確格式的日期 日期校驗ie6出錯,慎用
(6)dateISO:true          
必須輸入正確格式的日期(ISO),例如:2013-06-23
                          1981/03/22 只驗證格式,不驗證有效性
(7)number:true           
必須輸入合法的數字(負數,小數)
(8)digits:true           
必須輸入整數
(9)creditcard:           
必須輸入合法的信用卡號
(10)equalTo:"#field"     
輸入值必須和#field相同
(11)accept:              
輸入擁有合法後綴名的字符串(上傳文件的後綴)
(12)maxlength:5          
輸入長度最可能是5的字符串(漢字算一個字符)
(13)minlength:10         
輸入長度最小是10的字符串(漢字算一個字符)
(14)rangelength:[4,10]   
輸入長度必須介於4和10之間的字符串(漢字算一個字符)
(15)range:[5,10]         
輸入值必須介於 510 之間
(16)max:5                
輸入值不能大於5
(17)min:10               
輸入值不能小於10
css

3、默認的提示

messages: {
   required: "This field is required.",
   remote: "Please fix this field.",
   email: "Please enter a valid email address.",
   url: "Please enter a valid URL.",
   date: "Please enter a valid date.",
   dateISO: "Please enter a valid date (ISO).",
   dateDE: "Bitte geben Sie ein g
ltiges Datum ein.",
   number: "Please enter a valid number.",
   numberDE: "Bitte geben Sie eine Nummer ein.",
   digits: "Please enter only digits",
   creditcard: "Please enter a valid credit card number.",
   equalTo: "Please enter the same value again.",
   accept: "Please enter a value with a valid extension.",
   maxlength: $.validator.format("Please enter no more than {0} characters."),
   minlength: $.validator.format("Please enter at least {0} characters."),
   rangelength: $.validator.format("Please enter a value between {0} and {1} characters long."),
   range: $.validator.format("Please enter a value between {0} and {1}."),
   max: $.validator.format("Please enter a value less than or equal to {0}."),
   min: $.validator.format("Please enter a value greater than or equal to {0}.")
},

如須要修改,可在js代碼中加入:
jQuery.extend(jQuery.validator.messages, {
       required: "
必選字段",
  remote: "
請修正該字段",
  email: "
請輸入正確格式的電子郵件",
  url: "
請輸入合法的網址",
  date: "
請輸入合法的日期",
  dateISO: "
請輸入合法的日期 (ISO).",
  number: "
請輸入合法的數字",
  digits: "
只能輸入整數",
  creditcard: "
請輸入合法的信用卡號",
  equalTo: "
請再次輸入相同的值",
  accept: "
請輸入擁有合法後綴名的字符串",
  maxlength: jQuery.validator.format("
請輸入一個 長度最可能是 {0} 的字符串"),
  minlength: jQuery.validator.format("
請輸入一個 長度最少是 {0} 的字符串"),
  rangelength: jQuery.validator.format("
請輸入 一個長度介於 {0}{1} 之間的字符串"),
  range: jQuery.validator.format("
請輸入一個介於 {0}{1} 之間的值"),
  max: jQuery.validator.format("
請輸入一個最大爲{0} 的值"),
  min: jQuery.validator.format("
請輸入一個最小爲{0} 的值")
});
html

推薦作法,將此文件放入msg_cn.js中,在頁面中引入
<script src="js/msg_cn.js" type="text/javascript"></script>
java

4、使用方式

1.將校驗規則寫到控件中

<script src="../js/jquery.js" type="text/javascript"></script>
<script src="../js/jquery.validate.js" type="text/javascript"></script>
<script src="js/jquery.metadata.js" type="text/javascript"></script>
jquery

$().ready(function() {
 $("#loginForm").validate();
});
<form id="loginForm" method="post" action="">
   <p>
       <label for="username">用戶名</label>
       <input id="username" name="username" class="required" />
   </p>
 <p>
  <label for="email">E-Mail</label>
  <input id="email" name="email" class="required email" />
 </p>
 <p>
  <label for="password">密碼</label>
  <input id="password" name="password" type="password" class="{required:true,minlength:5}" />
 </p>
 <p>
  <label for="confirm_password">
確認密碼</label>
  <input id="confirm_password" name="confirm_password" type="password" class="{required:true,minlength:5,equalTo:'#password'}" />
 </p>
   <p>
       <input class="submit" type="submit" value="提交"/>
   </p>
</form>
git

使用class="{}"的方式,必須引入包:jquery.metadata.js ajax

可使用以下的方法,修改提示內容:
class="{required:true,minlength:5,messages:{required:'
請輸入內容'}}"
json

在使用equalTo關鍵字時,後面的內容必須加上引號,以下代碼:
class="{required:true,minlength:5,equalTo:'#password'}"

app

2.將校驗規則寫到js代碼中

$().ready(function() {
 $("#loginForm").validate({
       rules: {
   username: "required",
   email: {
    required: true,
    email: true
   },
   password: {
    required: true,
    minlength: 5
   },
   confirm_password: {
    required: true,
    minlength: 5,
    equalTo: "#password"
   }
  },
       messages: {
   username: "
請輸入姓名",
   email: {
    required: "
請輸入Email地址",
    email: "
請輸入正確的email地址"
   },
   password: {
    required: "
請輸入密碼",
    minlength: jQuery.format("
密碼不能小於{0}個字 符")
   },
   confirm_password: {
    required: "
請輸入確認密碼",
    minlength: "
確認密碼不能小於5個字符",
    equalTo: "
兩次輸入密碼不一致不一致"
   }
  }
   });
});

//messages
處,若是某個控件沒有message,將調用默認的信息
<form id="loginForm" method="get" action="">
   <p>
       <label for="username">用戶名</label>
       <input id="username" name="username" />
   </p>
 <p>
  <label for="email">E-Mail</label>
  <input id="email" name="email" />
 </p>
 <p>
  <label for="password">密碼</label>
  <input id="password" name="password" type="password" />
 </p>
 <p>
  <label for="confirm_password">
確認密碼</label>
  <input id="confirm_password" name="confirm_password" type="password" />
 </p>
   <p>
       <input class="submit" type="submit" value="提交"/>
   </p>
</form>

required:true 必須有值
required:"#aa:checked"
表達式的值爲真,則須要驗證
required:function(){}
返回爲真,表時須要驗證
後邊兩種經常使用於,表單中須要同時填或不填的元素

5、經常使用方法及注意問題

1.用其餘方式替代默認的SUBMIT

$().ready(function() {
 $("#loginForm").validate({
       submitHandler:function(form){
           alert("提交成功");   
           form.submit();
       }    
   });
});

能夠設置validate的默認值,寫法以下:
$.validator.setDefaults({
 submitHandler: function(form) { alert("提交成功!");form.submit(); }
});

若是想提交表單, 須要使用form.submit()而不要使用$(form).submit()

2.debug,只驗證不提交表單

若是這個參數爲true,那麼表單不會提交,只進行檢查,調試時十分方便
$().ready(function() {
 $("#loginForm").validate({
       debug:true
   });
});
若是一個頁面中有多個表單都想設置成爲debug,用
$.validator.setDefaults({
  debug: true
})

3.ignore:忽略某些元素不驗證
ignore: ".ignore"

4.更改錯誤信息顯示的位置

errorPlacementCallback 

 Default: 把錯誤信息放在驗證的元素後面 
指明錯誤放置的位置,默認狀況是:error.appendTo(element.parent());即把錯誤信息放在驗證的元素後面
errorPlacement: function(error, element) {  
   error.appendTo(element.parent());  
}

//示例:
<tr>
   <td class="label"><label id="lbl_username" for="username">用戶名</label></td>
   <td class="field"><input id="username" name="username" type="text" value="" maxlength="100" /></td>
   <td class="status"></td>
</tr>
<tr>
   <td style="padding-right: 5px;">
       <input id="dateformat_eu" name="dateformat" type="radio" value="0" />
       <label id="ldateformat_eu" for="dateformat_eu">14/02/07</label>
   </td>
   <td style="padding-left: 5px;">
       <input id="dateformat_am" name="dateformat" type="radio" value="1" />
       <label id="ldateformat_am" for="dateformat_am">02/14/07</label>
   </td>
   <td></td>
</tr>
<tr>
   <td class="label">&nbsp;</td>
   <td class="field" colspan="2">
       <div id="termswrap">
           <input id="terms" type="checkbox" name="terms" />
           <label id="lterms" for="terms">I have read and accept the Terms of Use.</label>
       </div>
   </td>
</tr>

errorPlacement: function(error, element) {
   if ( element.is(":radio") )
       error.appendTo( element.parent().next().next() );
   else if ( element.is(":checkbox") )
       error.appendTo ( element.next() );
   else
       error.appendTo( element.parent().next() );
}

代碼的做用是:通常狀況下把錯誤信息顯示在<td class="status"></td>中,若是是radio顯示在<td></td>中,若是是 checkbox顯示在內容的後面

errorClassString Default: "error" 
指定錯誤提示的css類名,能夠自定義錯誤提示的樣式

errorElementString Default: "label" 
用什麼標籤標記錯誤,默認的是label你能夠改爲em

errorContainerSelector 
顯示或者隱藏驗證信息,能夠自動實現有錯誤信息出現時把容器屬性變爲顯示,無錯誤時隱藏,用處不大
errorContainer: "#messageBox1, #messageBox2"

errorLabelContainerSelector
把錯誤信息統一放在一個容器裏面。

wrapperString
用什麼標籤再把上邊的errorELement包起來

通常這三個屬性同時使用,實如今一個容器內顯示全部錯誤提示的功能,而且沒有信息時自動隱藏

errorContainer: "div.error",
errorLabelContainer: $("#signupForm div.error"),
wrapper: "li"

5更改錯誤信息顯示的樣式

設置錯誤提示的樣式,能夠增長圖標顯示,在該系統中已經創建了一個validation.css專門用於維護校驗文件的樣式

input.error { border: 1px solid red; }
label.error {
 background:url("./demo/images/unchecked.gif") no-repeat 0px 0px;

 padding-left: 16px;

 padding-bottom: 2px;

 font-weight: bold;

 color: #EA5200;
}
label.checked {
 background:url("./demo/images/checked.gif") no-repeat 0px 0px;
}

6每一個字段驗證經過執行函數

successString,Callback
要驗證的元素經過驗證後的動做,若是跟一個字符串,會當作一個css類,也可跟一個函數
success: function(label) {
   // set &nbsp; as text for IE
   label.html("&nbsp;").addClass("checked");
   //label.addClass("valid").text("Ok!")
}
添加"valid" 到驗證元素,CSS中定義的樣式<style>label.valid {}</style>
success: "valid"

7驗證的觸發方式修改

下面的雖然是boolean型的,但建議除非要改成false,不然別亂添加。

onsubmitBoolean Default: true 
提交時驗證. 設置惟false就用其餘方法去驗證
onfocusout
Boolean Default: true 
失去焦點是驗證(不包括checkboxes/radio buttons)
onkeyup
Boolean Default: true 
keyup時驗證.
onclick
Boolean Default: true 
checkboxesradio 點擊時驗證
focusInvalid
Boolean Default: true 
提交表單後,未經過驗證的表單(第一個或提交以前得到焦點的未經過驗證的表單)會得到焦點
focusCleanup
Boolean Default: false 
若是是true那麼當未經過驗證的元素得到焦點時,移除錯誤提示。避免和 focusInvalid 一塊兒用

 

// 重置表單
$().ready(function() {
 var validator = $("#signupForm").validate({
       submitHandler:function(form){
           alert("submitted");   
           form.submit();
       }    
   });
   $("#reset").click(function() {
       validator.resetForm();
   });

});

8異步驗證

remoteURL
使用ajax方式進行驗證,默認會提交當前驗證的值到遠程地址,若是須要提交其餘的值,可使用data選項

remote: "check-email.php"

remote: {
   url: "check-email.php",    //
後臺處理程序
   type: "post",              //
數據發送方式
   dataType: "json",          //
接受數據格式   
   data: {                    //
要傳遞的數據
       username: function() {
           return $("#username").val();
       }
   }
}

遠程地址只能輸出 "true""false",不能有其它輸出

9添加自定義校驗

addMethodname, method, message
自定義驗證方法


//
中文字兩個字節
jQuery.validator.addMethod("byteRangeLength", function(value, element, param) {
   var length = value.length;
   for(var i = 0; i < value.length; i++){
       if(value.charCodeAt(i) > 127){
           length++;
       }
   }
 return this.optional(element) || ( length >= param[0] && length <= param[1] );   
}, $.validator.format("
請確保輸入的值在{0}-{1}個字節之間(一箇中文字算2個字節)"));


//
郵政編碼驗證   
jQuery.validator.addMethod("isZipCode", function(value, element) {   
   var tel = /^[0-9]{6}$/;
   return this.optional(element) || (tel.test(value));
}, "
請正確填寫您的郵政編碼");

10radiocheckboxselect的驗證

 

1.radiorequired表示必須選中一個
<input type="radio" id="gender_male" value="m" name="gender" class="{required:true}" />
<input type="radio" id="gender_female" value="f" name="gender"/>

2.checkboxrequired表示必須選中
<input type="checkbox" class="checkbox" id="agree" name="agree" class="{required:true}" />

checkboxminlength表示必須選中的最小個數,maxlength表示最大的選中個數,rangelength:[2,3]表 示選中個數區間


<input type="checkbox" class="checkbox" id="spam_email" value="email" name="spam[]" class="{required:true, minlength:2}" />
<input type="checkbox" class="checkbox" id="spam_phone" value="phone" name="spam[]" />
<input type="checkbox" class="checkbox" id="spam_mail" value="mail" name="spam[]" />

 

    3.selectrequired表示選中的value不能爲空
<select id="jungle" name="jungle" title="Please select something!" class="{required:true}">
   <option value=""></option>
   <option value="1">北京</option>
   <option value="2">上海</option>
   <option value="3">深圳</option>
</select>
select
minlength表示選中的最小個數(可多選的select,maxlength表示最大的選中個 數,rangelength:[2,3]表示選中個數區間 <select id="fruit" name="fruit" title="Please select at least two fruits" class="{required:true, minlength:2}" multiple="multiple">    <option value="b">北京</option>    <option value="a">上海</option>    <option value="p">廣州</option>    <option value="t">香港</option> </select>

 
相關文章
相關標籤/搜索