<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    Sealyu

    --- 博客已遷移至: http://www.sealyu.com/blog

      BlogJava :: 首頁 :: 新隨筆 :: 聯(lián)系 :: 聚合  :: 管理 ::
      618 隨筆 :: 87 文章 :: 225 評論 :: 0 Trackbacks
    一、用前必備
    官方網(wǎng)站:http://bassistance.de/jquery-plugins/jquery-plugin-validation/
    API: http://jquery.bassistance.de/api-browser/plugins.html
    當(dāng)前版本:1.5.5
    需要JQuery版本:1.2.6+, 兼容 1.3.2
    <script src="../js/jquery.js" type="text/javascript"></script>
    <script src="../js/jquery.validate.js" type="text/javascript"></script>

    二、默認(rèn)校驗(yàn)規(guī)則
    (1)required:true               必輸字段
    (2)remote:"check.php"          使用ajax方法調(diào)用check.php驗(yàn)證輸入值
    (3)email:true                  必須輸入正確格式的電子郵件
    (4)url:true                    必須輸入正確格式的網(wǎng)址
    (5)date:true                   必須輸入正確格式的日期
    (6)dateISO:true                必須輸入正確格式的日期(ISO),例如:2009-06-23,1998/01/22 只驗(yàn)證格式,不驗(yàn)證有效性
    (7)number:true                 必須輸入合法的數(shù)字(負(fù)數(shù),小數(shù))
    (8)digits:true                 必須輸入整數(shù)
    (9)creditcard:                 必須輸入合法的信用卡號
    (10)equalTo:"#field"           輸入值必須和#field相同
    (11)accept:                    輸入擁有合法后綴名的字符串(上傳文件的后綴)
    (12)maxlength:5                輸入長度最多是5的字符串(漢字算一個字符)
    (13)minlength:10               輸入長度最小是10的字符串(漢字算一個字符)
    (14)rangelength:[5,10]         輸入長度必須介于 5 和 10 之間的字符串")(漢字算一個字符)
    (15)range:[5,10]               輸入值必須介于 5 和 10 之間
    (16)max:5                      輸入值不能大于5
    (17)min:10                     輸入值不能小于10

    三、默認(rèn)的提示
    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: "請輸入合法的網(wǎng)址",
      date: "請輸入合法的日期",
      dateISO: "請輸入合法的日期 (ISO).",
      number: "請輸入合法的數(shù)字",
      digits: "只能輸入整數(shù)",
      creditcard: "請輸入合法的信用卡號",
      equalTo: "請?jiān)俅屋斎胂嗤闹?,
      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} 的值")
    });
    推薦做法,將此文件放入messages_cn.js中,在頁面中引入
    <script src="../js/messages_cn.js" type="text/javascript"></script>

    四、使用方式
    1.將校驗(yàn)規(guī)則寫到控件中
    <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>
    $().ready(function() {
     $("#signupForm").validate();
    });

    <form id="signupForm" method="get" action="">
        <p>
            <label for="firstname">Firstname</label>
            <input id="firstname" name="firstname" class="required" />
        </p>
     <p>
      <label for="email">E-Mail</label>
      <input id="email" name="email" class="required email" />
     </p>
     <p>
      <label for="password">Password</label>
      <input id="password" name="password" type="password" class="{required:true,minlength:5}" />
     </p>
     <p>
      <label for="confirm_password">確認(rèn)密碼</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="Submit"/>
        </p>
    </form>
    使用class="{}"的方式,必須引入包:jquery.metadata.js
    可以使用如下的方法,修改提示內(nèi)容:
    class="{required:true,minlength:5,messages:{required:'請輸入內(nèi)容'}}"
    在使用equalTo關(guān)鍵字時,后面的內(nèi)容必須加上引號,如下代碼:
    class="{required:true,minlength:5,equalTo:'#password'}"
    另外一個方式,使用關(guān)鍵字:meta(為了元數(shù)據(jù)使用其他插件你要包裝 你的驗(yàn)證規(guī)則 在他們自己的項(xiàng)目中可以用這個特殊的選項(xiàng))
    Tell the validation plugin to look inside a validate-property in metadata for validation rules.
    例如:
    meta: "validate"
    <input id="password" name="password" type="password" class="{validate:{required:true,minlength:5}}" />

    再有一種方式:
    $.metadata.setType("attr", "validate");
    這樣可以使用validate="{required:true}"的方式,或者class="required",但class="{required:true,minlength:5}"將不起作用
     
    2.將校驗(yàn)規(guī)則寫到代碼中

    $().ready(function() {
     $("#signupForm").validate({
            rules: {
       firstname: "required",
       email: {
        required: true,
        email: true
       },
       password: {
        required: true,
        minlength: 5
       },
       confirm_password: {
        required: true,
        minlength: 5,
        equalTo: "#password"
       }
      },
            messages: {
       firstname: "請輸入姓名",
       email: {
        required: "請輸入Email地址",
        email: "請輸入正確的email地址"
       },
       password: {
        required: "請輸入密碼",
        minlength: jQuery.format("密碼不能小于{0}個字符")
       },
       confirm_password: {
        required: "請輸入確認(rèn)密碼",
        minlength: "確認(rèn)密碼不能小于5個字符",
        equalTo: "兩次輸入密碼不一致不一致"
       }
      }
        });
    });
    //messages處,如果某個控件沒有message,將調(diào)用默認(rèn)的信息

    <form id="signupForm" method="get" action="">
        <p>
            <label for="firstname">Firstname</label>
            <input id="firstname" name="firstname" />
        </p>
     <p>
      <label for="email">E-Mail</label>
      <input id="email" name="email" />
     </p>
     <p>
      <label for="password">Password</label>
      <input id="password" name="password" type="password" />
     </p>
     <p>
      <label for="confirm_password">確認(rèn)密碼</label>
      <input id="confirm_password" name="confirm_password" type="password" />
     </p>
        <p>
            <input class="submit" type="submit" value="Submit"/>
        </p>
    </form>
    required:true 必須有值
    required:"#aa:checked"表達(dá)式的值為真,則需要驗(yàn)證
    required:function(){}返回為真,表時需要驗(yàn)證
    后邊兩種常用于,表單中需要同時填或不填的元素
     
    五、常用方法及注意問題
    1.用其他方式替代默認(rèn)的SUBMIT
    $().ready(function() {
     $("#signupForm").validate({
            submitHandler:function(form){
                alert("submitted");   
                form.submit();
            }    
        });
    });
    可以設(shè)置validate的默認(rèn)值,寫法如下:
    $.validator.setDefaults({
     submitHandler: function(form) { alert("submitted!");form.submit(); }
    });
    如果想提交表單, 需要使用form.submit()而不要使用$(form).submit()

    2.debug,如果這個參數(shù)為true,那么表單不會提交,只進(jìn)行檢查,調(diào)試時十分方便
    $().ready(function() {
     $("#signupForm").validate({
            debug:true
        });
    });
    如果一個頁面中有多個表單,用
    $.validator.setDefaults({
       debug: true
    })

    3.ignore:忽略某些元素不驗(yàn)證
    ignore: ".ignore"

    4.errorPlacement:Callback  Default: 把錯誤信息放在驗(yàn)證的元素后面 
    指明錯誤放置的位置,默認(rèn)情況是:error.appendTo(element.parent());即把錯誤信息放在驗(yàn)證的元素后面
    errorPlacement: function(error, element) {  
        error.appendTo(element.parent());  
    }
    //示例:
    <tr>
        <td class="label"><label id="lfirstname" for="firstname">First Name</label></td>
        <td class="field"><input id="firstname" name="firstname" 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顯示在內(nèi)容的后面
    errorClass:String  Default: "error" 
    指定錯誤提示的css類名,可以自定義錯誤提示的樣式
    errorElement:String  Default: "label" 
    用什么標(biāo)簽標(biāo)記錯誤,默認(rèn)的是label你可以改成em
    errorContainer:Selector 
    顯示或者隱藏驗(yàn)證信息,可以自動實(shí)現(xiàn)有錯誤信息出現(xiàn)時把容器屬性變?yōu)轱@示,無錯誤時隱藏,用處不大
    errorContainer: "#messageBox1, #messageBox2"
    errorLabelContainer:Selector
    把錯誤信息統(tǒng)一放在一個容器里面。
    wrapper:String
    用什么標(biāo)簽再把上邊的errorELement包起來
    一般這三個屬性同時使用,實(shí)現(xiàn)在一個容器內(nèi)顯示所有錯誤提示的功能,并且沒有信息時自動隱藏
    errorContainer: "div.error",
    errorLabelContainer: $("#signupForm div.error"),
    wrapper: "li"
     
    設(shè)置錯誤提示的樣式,可以增加圖標(biāo)顯示
    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;
    }
    success:String,Callback
    要驗(yàn)證的元素通過驗(yàn)證后的動作,如果跟一個字符串,會當(dāng)做一個css類,也可跟一個函數(shù)
    success: function(label) {
        // set &nbsp; as text for IE
        label.html("&nbsp;").addClass("checked");
        //label.addClass("valid").text("Ok!")
    }
    添加"valid" 到驗(yàn)證元素, 在CSS中定義的樣式<style>label.valid {}</style>
    success: "valid"
     
     
    nsubmit: Boolean  Default: true 
    提交時驗(yàn)證. 設(shè)置唯false就用其他方法去驗(yàn)證
    onfocusout:Boolean  Default: true 
    失去焦點(diǎn)是驗(yàn)證(不包括checkboxes/radio buttons)
    onkeyup:Boolean  Default: true 
    在keyup時驗(yàn)證.
    onclick:Boolean  Default: true 
    在checkboxes 和 radio 點(diǎn)擊時驗(yàn)證
    focusInvalid:Boolean  Default: true 
    提交表單后,未通過驗(yàn)證的表單(第一個或提交之前獲得焦點(diǎn)的未通過驗(yàn)證的表單)會獲得焦點(diǎn)
    focusCleanup:Boolean  Default: false 
    如果是true那么當(dāng)未通過驗(yàn)證的元素獲得焦點(diǎn)時,移除錯誤提示。避免和 focusInvalid 一起用
     
    // 重置表單
    $().ready(function() {
     var validator = $("#signupForm").validate({
            submitHandler:function(form){
                alert("submitted");   
                form.submit();
            }    
        });
        $("#reset").click(function() {
            validator.resetForm();
        });
    });
     
    remote:URL
    使用ajax方式進(jìn)行驗(yàn)證,默認(rèn)會提交當(dāng)前驗(yàn)證的值到遠(yuǎn)程地址,如果需要提交其他的值,可以使用data選項(xiàng)
    remote: "check-email.php"
    remote: {
        url: "check-email.php",     //后臺處理程序
        type: "post",               //數(shù)據(jù)發(fā)送方式
        dataType: "json",           //接受數(shù)據(jù)格式   
        data: {                     //要傳遞的數(shù)據(jù)
            username: function() {
                return $("#username").val();
            }
        }
    }

    遠(yuǎn)程地址只能輸出 "true" 或 "false",不能有其它輸出
     
     
    addMethod:name, method, message
    自定義驗(yàn)證方法

    // 中文字兩個字節(jié)
    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}個字節(jié)之間(一個中文字算2個字節(jié))"));

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

    radio和checkbox、select的驗(yàn)證
    radio的required表示必須選中一個
    <input  type="radio" id="gender_male" value="m" name="gender" class="{required:true}" />
    <input  type="radio" id="gender_female" value="f" name="gender"/>
    checkbox的required表示必須選中
    <input type="checkbox" class="checkbox" id="agree" name="agree" class="{required:true}" />
    checkbox的minlength表示必須選中的最小個數(shù),maxlength表示最大的選中個數(shù),rangelength:[2,3]表示選中個數(shù)區(qū)間
    <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[]" />

    select的required表示選中的value不能為空
    <select id="jungle" name="jungle" title="Please select something!" class="{required:true}">
        <option value=""></option>
        <option value="1">Buga</option>
        <option value="2">Baga</option>
        <option value="3">Oi</option>
    </select>
    select的minlength表示選中的最小個數(shù)(可多選的select),maxlength表示最大的選中個數(shù),rangelength:[2,3]表示選中個數(shù)區(qū)間
    <select id="fruit" name="fruit" title="Please select at least two fruits" class="{required:true, minlength:2}" multiple="multiple">
        <option value="b">Banana</option>
        <option value="a">Apple</option>
        <option value="p">Peach</option>
        <option value="t">Turtle</option>
    </select>



    幾個常用代碼:

       1:  $(document).ready(function() {

       
    2:   

       
    3:      // We use the jQuery validator plugin to do input validation

       
    4:      // http://docs.jquery.com/Plugins/Validation

       
    5:   

       
    6:      // call the validate method on our form, and pass in our explicit options

       
    7:      $("#frmRegister").validate({

       
    8:          onkeyup:false,

       
    9:          rules: {

      
    10:              username: {

      
    11:                  required:true,

      
    12:                  minlength:5,

      
    13:                  maxlength:45,

      
    14:                  validChars:true,

      
    15:                  usernameCheck:true    // remote check for duplicate username

      
    16:              },

      
    17:              email_first: {

      
    18:                  required:true,

      
    19:                  email:true,

      
    20:                  maxlength:255,

      
    21:                  emailCheck:true    // remote check for duplicate email address

      
    22:              },

      
    23:              email_second: {

      
    24:                  required:true,

      
    25:                  equalTo: "#email_first"

      
    26:              },

      
    27:              password_first: {

      
    28:                  required:true,

      
    29:                  minlength:6,

      
    30:                  maxlength:128

      
    31:              },

      
    32:              password_second: {

      
    33:                  required:true,

      
    34:                  equalTo: "#password_first"

      
    35:              },

      
    36:              tos: {

      
    37:                  required:true

      
    38:              }

      
    39:          },

      
    40:          messages: {

      
    41:              username: {

      
    42:                  required: "username is required.",

      
    43:                  minlength: jQuery.format("username must be at least {0} characters in length."),

      
    44:                  maxlength: jQuery.format("username can not exceed {0} characters in length."),

      
    45:                  validChars: "please supply valid characters only.",

      
    46:                  usernameCheck:"this username is already in use."

      
    47:              },

      
    48:              email_first: {

      
    49:                  required: "email address is required.",

      
    50:                  email: "email address must be valid.",

      
    51:                  maxlength: jQuery.format("email address can not exceed {0} characters in length."),

      
    52:                  emailCheck:"this email address is already in use."

      
    53:              },

      
    54:              email_second: {

      
    55:                  required: "confirmed email address is required.",

      
    56:                  equalTo: "confirmed email address does not match."

      
    57:              },

      
    58:              password_first: {

      
    59:                  required: "password is required.",

      
    60:                  minlength: jQuery.format("password must be at least {0} characters in length."),

      
    61:                  maxlength: jQuery.format("password can not exceed {0} characters in length.")

      
    62:              },

      
    63:              password_second: {

      
    64:                  required: "confirmed password is required.",

      
    65:                  equalTo: "confirmed password does not match."

      
    66:              },

      
    67:              tos: {

      
    68:                  required: "in order to join, agreeing to the Terms and Conditions is required."

      
    69:              }

      
    70:          }

      
    71:      });

      
    72:   

      
    73:   

      
    74:  });

      
    75:   

      
    76:  // extend the validation plugin to do remote username and email dupe checking

      
    77:  jQuery.validator.addMethod('usernameCheck', function(username) {

      
    78:      var postURL = "user/json_username_check";

      
    79:      $.ajax({

      
    80:          cache:false,

      
    81:          async:false,

      
    82:          type: "POST",

      
    83:          data: "username=" + username,

      
    84:          url: postURL,

      
    85:          success: function(msg) {

      
    86:              result = (msg=='TRUE') ? true : false;

      
    87:          }

      
    88:      });

      
    89:      return result;

      
    90:  }, '');

      
    91:   

      
    92:  jQuery.validator.addMethod('emailCheck', function(email) {

      
    93:      var postURL = "user/json_email_check";

      
    94:      $.ajax({

      
    95:          cache:false,

      
    96:          async:false,

      
    97:          type: "POST",

      
    98:          data: "email=" + email,

      
    99:          url: postURL,

     
    100:          success: function(msg) {

     
    101:              result = (msg=='TRUE') ? true : false;

     
    102:          }

     
    103:      });

     
    104:      return result;

     
    105:  }, '');

     
    106:   

     
    107:  // check for unwanted characters

     
    108:  $.validator.addMethod('validChars', function (value) {

     
    109:   

     
    110:      var result = true;

     
    111:      // unwanted characters

     
    112:      var iChars = "!@#$%^&*()+=-[]\\\';,./{}|\":<>?";

     113:   

     114:      for (var i = 0; i < value.length; i++) {

     115:          if (iChars.indexOf(value.charAt(i)) != -1) {

     116:              return false;

     117:          }

     118:      }

     119:      return result;

     120:   

     121:  }, '');



    另外一個例子:
    /**//**  
       * @author ming  
      
    */  
      $(document).ready(
    function(){       
               
      
    /**//* 設(shè)置默認(rèn)屬性 */       
      $.validator.setDefaults({       
          submitHandler: 
    function(form) {    
              form.submit();    
         }       
     });   
      
     
    // 字符驗(yàn)證       
     jQuery.validator.addMethod("stringCheck"function(value, element) {       
         
    return this.optional(element) || /^[\u0391-\uFFE5\w]+$/.test(value);       
     }, 
    "只能包括中文字、英文字母、數(shù)字和下劃線");   
       
     
    // 中文字兩個字節(jié)       
     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] );       
     }, 
    "請確保輸入的值在3-15個字節(jié)之間(一個中文字算2個字節(jié))");   
       
     
    // 身份證號碼驗(yàn)證       
     jQuery.validator.addMethod("isIdCardNo"function(value, element) {       
         
    return this.optional(element) || isIdCardNo(value);       
     }, 
    "請正確輸入您的身份證號碼");    
          
     
    // 手機(jī)號碼驗(yàn)證       
     jQuery.validator.addMethod("isMobile"function(value, element) {       
         
    var length = value.length;   
         
    var mobile = /^(((13[0-9]{1})|(15[0-9]{1}))+\d{8})$/;   
         
    return this.optional(element) || (length == 11 && mobile.test(value));       
     }, 
    "請正確填寫您的手機(jī)號碼");       
          
     
    // 電話號碼驗(yàn)證       
     jQuery.validator.addMethod("isTel"function(value, element) {       
         
    var tel = /^\d{3,4}-?\d{7,9}$/;    //電話號碼格式010-12345678   
         return this.optional(element) || (tel.test(value));       
     }, 
    "請正確填寫您的電話號碼");   
       
     
    // 聯(lián)系電話(手機(jī)/電話皆可)驗(yàn)證   
     jQuery.validator.addMethod("isPhone"function(value,element) {   
         
    var length = value.length;   
         
    var mobile = /^(((13[0-9]{1})|(15[0-9]{1}))+\d{8})$/;   
         
    var tel = /^\d{3,4}-?\d{7,9}$/;   
         
    return this.optional(element) || (tel.test(value) || mobile.test(value));   
       
     }, 
    "請正確填寫您的聯(lián)系電話");   
          
     
    // 郵政編碼驗(yàn)證       
     jQuery.validator.addMethod("isZipCode"function(value, element) {       
         
    var tel = /^[0-9]{6}$/;       
         
    return this.optional(element) || (tel.test(value));       
     }, 
    "請正確填寫您的郵政編碼");    
       
     
    //開始驗(yàn)證   
     $('#submitForm').validate({   
         
    /**//* 設(shè)置驗(yàn)證規(guī)則 */  
         rules: {   
             username: {   
                 required:
    true,   
                 stringCheck:
    true,   
                 byteRangeLength:[
    3,15]   
             },   
             email:{   
                 required:
    true,   
                 email:
    true  
             },   
             phone:{   
                 required:
    true,   
                 isPhone:
    true  
             },   
             address:{   
                 required:
    true,   
                 stringCheck:
    true,   
                 byteRangeLength:[
    3,100]   
             }   
         },   
            
         
    /**//* 設(shè)置錯誤信息 */  
         messages: {   
             username: {       
                 required: 
    "請?zhí)顚懹脩裘?/span>",   
                 stringCheck: 
    "用戶名只能包括中文字、英文字母、數(shù)字和下劃線",   
                 byteRangeLength: 
    "用戶名必須在3-15個字符之間(一個中文字算2個字符)"       
             },   
             email:{   
                 required: 
    "請輸入一個Email地址",   
                 email: 
    "請輸入一個有效的Email地址"  
             },   
             phone:{   
                 required: 
    "請輸入您的聯(lián)系電話",   
                 isPhone: 
    "請輸入一個有效的聯(lián)系電話"  
            },   
            address:{   
                required: 
    "請輸入您的聯(lián)系地址",   
                stringCheck: 
    "請正確輸入您的聯(lián)系地址",   
                byteRangeLength: 
    "請?jiān)攲?shí)您的聯(lián)系地址以便于我們聯(lián)系您"  
            }   
        },   
           
        
    /**//* 設(shè)置驗(yàn)證觸發(fā)事件 */  
        focusInvalid: 
    false,   
        onkeyup: 
    false,   
           
        
    /**//* 設(shè)置錯誤信息提示DOM */  
        errorPlacement: 
    function(error, element) {       
            error.appendTo( element.parent());       
        },     
           
    });   
      
    });

     

     

    測試頁index.html

     

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"   
    "http://www.w3.org/TR/html4/loose.dtd">  
    <html xmlns="http://www.w3.org/1999/xhtml">  
        
    <head>  
            
    <meta http-equiv="Content-Type" content="text/html; charset=gbk" />  
            
    <title>jQuery驗(yàn)證</title>  
            
    <script src="lib/jquery/jquery-1.3.2.min.js" ></script>  
            
    <script type="text/javascript" src="lib/jquery/jquery.validate.js" mce_src="lib/jquery/jquery.validate.js"></script>  
            
    <script type="text/javascript" src="lib/jquery/messages_cn.js"></script>  
            
    <script type="text/javascript" src="lib/jquery/formValidatorClass.js"></script>  
            
    <style type="text/css">

            
    * {}{    
                font
    -family: Verdana;    
                font
    -size: 96%;    
            }   
            label {}{    
                width: 10em;    
                
    float: left;    
            }  

    posted on 2009-12-23 16:18 seal 閱讀(1805) 評論(0)  編輯  收藏 所屬分類: JQuery
    主站蜘蛛池模板: 亚洲福利在线观看| 羞羞视频网站免费入口| 成年女人18级毛片毛片免费| 男性gay黄免费网站| 国产亚洲精品仙踪林在线播放| 中文字幕亚洲一区二区三区 | 特黄aa级毛片免费视频播放| 国产AV无码专区亚洲A∨毛片| 最近中文字幕无免费视频| gogo免费在线观看| 亚洲AV无码一区二区三区人| 中文字幕第一页亚洲| 国产2021精品视频免费播放| 亚洲国产精品无码久久久| 亚洲Av无码乱码在线znlu| 免费精品国产自产拍在线观看图片| 一区二区三区免费在线视频| 亚洲va在线va天堂成人| 亚洲区小说区图片区QVOD| 日本免费的一级v一片| 最近最新高清免费中文字幕| 亚洲综合综合在线| 亚洲第一区精品观看| 可以免费看的卡一卡二| 免费一级不卡毛片| 亚洲另类精品xxxx人妖| 亚洲宅男天堂在线观看无病毒| 免费无码又爽又刺激毛片| eeuss免费影院| 亚洲乱码av中文一区二区| 亚洲视频一区二区在线观看| 亚洲综合伊人久久综合| 99精品免费观看| 久久免费视频一区| 亚洲国色天香视频| 亚洲va久久久噜噜噜久久男同| 亚洲国产精品尤物YW在线观看| 女人被男人躁的女爽免费视频| 亚欧色视频在线观看免费| 久久国产免费一区| a级男女仿爱免费视频|