1. 程式人生 > >JQuery Validate引數說明

JQuery Validate引數說明

 

jquery.validate.js是jquery下的一個驗證外掛,功能比較強大,早就有所耳聞但是一隻沒有動手用過,現在在於能夠研究一下了。

這裡轉載一篇前輩寫的文章,在我自己的理解上修改了一下,僅作記錄。

先貼一個國內某大公司的程式碼:

JavaScript程式碼
<script type="text/javascript">   
  
function lang(key) {   
    mylang = {   
  
        'ls_input_myb': '請輸入您的賬戶',   
        'ls_myb_email': '漫遊幣賬戶為郵箱地址',   
        'ls_login_password': '請輸入您的登入密碼',   
        'ls_password_length': '密碼長度為{0}-{1}位之間',   
        'ls_input_captcha': '請輸入驗證碼',   
        'ls_captcha_length': '驗證碼的長度為{0}位',   
        'ls_account_email': '賬戶名為郵箱地址',   
  
        '':''  
    };   
  
    return mylang[key];   
}   
  
</script>   
  
<script type="text/javascript">   
$(document).ready(function() {   
  
    $("#loginForm").validate({   
        rules: {   
            uEmail: {   
                required: true,   
                email: true  
            },   
            uPassword: {   
                required: true,   
                rangelength: [6, 30]   
            }   
        },   
        messages: {   
            uEmail: {   
                required: lang('ls_input_myb'),   
                email: lang('ls_myb_email')   
            },   
            uPassword: {   
                required: lang('ls_login_password'),   
                rangelength: $.format(lang('ls_password_length'))   
            }   
        },   
        errorPlacement: function(error, element) {   
            var placement = $(element.parent("td").parent("tr").next("tr").find("td").get(1));   
            placement.text('');   
            error.appendTo( placement );   
        },   
        onkeyup: false  
    });   
  
    var accountTipsText = lang('ls_account_email');   
    $("#uEmail").focus(function() {   
        if (!$($(this).parent().parent().next().find('td').get(1)).text()) {   
            $($(this).parent().parent().next().find('td').get(1)).html('<span class="font_888_8">' + accountTipsText + '</span>');   
        }   
        $(this).css('color', '#000');   
    }).focus();   
  
  
  
});   
  
</script>   
我就是從這個例子中開始的,其實這個例子幾乎包含了jquery.validate.js的精髓,如果你完整理解了這個程式碼基本上算是入門了。

想起以前做期貨網頁線上模擬的時候都自己寫程式碼去判斷,真實幼稚死了…………

下面是完整的文章介紹。

預設校驗規則
(1)required:true               必輸欄位
(2)remote:"check.php"          使用ajax方法呼叫check.php驗證輸入值
(3)email:true                  必須輸入正確格式的電子郵件
(4)url:true                    必須輸入正確格式的網址
(5)date:true                   必須輸入正確格式的日期
(6)dateISO:true                必須輸入正確格式的日期(ISO),例如:2009-06-23,1998/01/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:[5,10]         輸入長度必須介於 5 和 10 之間的字串")(漢字算一個字元)
(15)range:[5,10]               輸入值必須介於 5 和 10 之間
(16)max:5                      輸入值不能大於5
(17)min:10                     輸入值不能小於10
預設的提示
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} 的值")
});
推薦做法,將此檔案放入messages_cn.js中,在頁面中引入
<script src="../js/messages_cn.js" type="text/javascript"></script>
 
使用方式
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>
$().ready(function() {
 $("#signupForm").validate();
});

<form id="signupForm" method="get" action="">
        <label for="firstname">Firstname</label>
        <input id="firstname" name="firstname" class="required" />

        <label for="email">E-Mail</label>
        <input id="email" name="email" class="required email" />

         <label for="password">Password</label>
        <input id="password" name="password" type="password" class="{required:true,minlength:5}" />

         <label for="confirm_password">確認密碼</label>
        <input id="confirm_password" name="confirm_password" type="password" class="{required:true,minlength:5,equalTo:'#password'}" />

        <input class="submit" type="submit" value="Submit"/>  
</form>
 
使用class="{}"的方式,必須引入包:jquery.metadata.js
可以使用如下的方法,修改提示內容:
class="{required:true,minlength:5,messages:{required:'請輸入內容'}}"
在使用equalTo關鍵字時,後面的內容必須加上引號,如下程式碼:
class="{required:true,minlength:5,equalTo:'#password'}"
另外一個方式,使用關鍵字:meta(為了元資料使用其他外掛你要包裝 你的驗證規則在他們自己的專案中可以用這個特殊的選項)
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.將校驗規則寫到程式碼中

$().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: "請輸入確認密碼",
    minlength: "確認密碼不能小於5個字元",
    equalTo: "兩次輸入密碼不一致不一致"
   }
  }
    });
});
//messages處,如果某個控制元件沒有message,將呼叫預設的資訊

<form id="signupForm" method="get" action="">
        <label for="firstname">Firstname</label>
        <input id="firstname" name="firstname" />

        <label for="email">E-Mail</label>
        <input id="email" name="email" />

        <label for="password">Password</label>
        <input id="password" name="password" type="password" />

        <label for="confirm_password">確認密碼</label>
        <input id="confirm_password" name="confirm_password" type="password" />

         <input class="submit" type="submit" value="Submit"/>  
</form>
 
required:true 必須有值
required:"#aa:checked"表示式的值為真,則需要驗證
required:function(){}返回為真,表時需要驗證
後邊兩種常用於,表單中需要同時填或不填的元素
 
常用方法及注意問題
1.用其他方式替代預設的SUBMIT
$().ready(function() {
 $("#signupForm").validate({
        submitHandler:function(form){
            alert("submitted");  
            form.submit();
        }   
    });
});
可以設定validate的預設值,寫法如下:
$.validator.setDefaults({
 submitHandler: function(form) { alert("submitted!");form.submit(); }
});
如果想提交表單, 需要使用form.submit()而不要使用$(form).submit()

2.debug,如果這個引數為true,那麼表單不會提交,只進行檢查,除錯時十分方便
$().ready(function() {
 $("#signupForm").validate({
        debug:true
    });
});
如果一個頁面中有多個表單,用
$.validator.setDefaults({
   debug: true
})

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

4.errorPlacement:Callback  Default: 把錯誤資訊放在驗證的元素後面
指明錯誤放置的位置,預設情況是:error.appendTo(element.parent());即把錯誤資訊放在驗證的元素後面
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>
    </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顯示在內容的後面
errorClass:String  Default: "error"
指定錯誤提示的css類名,可以自定義錯誤提示的樣式
errorElement:String  Default: "label"
用什麼標籤標記錯誤,預設的是label你可以改成em
errorContainer:Selector
顯示或者隱藏驗證資訊,可以自動實現有錯誤資訊出現時把容器屬性變為顯示,無錯誤時隱藏,用處不大
errorContainer: "#messageBox1, #messageBox2"
errorLabelContainer:Selector
把錯誤資訊統一放在一個容器裡面。
wrapper:String
用什麼標籤再把上邊的errorELement包起來
一般這三個屬性同時使用,實現在一個容器內顯示所有錯誤提示的功能,並且沒有資訊時自動隱藏
errorContainer: "div.error",
errorLabelContainer: $("#signupForm div.error"),
wrapper: "li"
 
設定錯誤提示的樣式,可以增加圖示顯示
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
要驗證的元素通過驗證後的動作,如果跟一個字串,會當做一個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"
 
 
nsubmit: Boolean  Default: true
提交時驗證. 設定唯false就用其他方法去驗證
onfocusout:Boolean  Default: true
失去焦點是驗證(不包括checkboxes/radio buttons)
onkeyup:Boolean  Default: true
在keyup時驗證.
onclick:Boolean  Default: true
在checkboxes 和 radio 點選時驗證
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();
    });
});
 
remote:URL
使用ajax方式進行驗證,預設會提交當前驗證的值到遠端地址,如果需要提交其他的值,可以使用data選項
remote: "check-email.php"
remote: {
    url: "check-email.php",     //後臺處理程式
    type: "post",               //資料傳送方式
    dataType: "json",           //接受資料格式  
    data: {                     //要傳遞的資料
        username: function() {
            return $("#username").val();
        }
    }
}

遠端地址只能輸出 "true" 或 "false",不能有其它輸出
 
 
addMethod:name, 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));
}, "請正確填寫您的郵政編碼");

radio和checkbox、select的驗證
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表示必須選中的最小個數,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[]" />

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表示選中的最小個數(可多選的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">Banana</option>
    <option value="a">Apple</option>
    <option value="p">Peach</option>
    <option value="t">Turtle</option>
</select>

相關推薦

JQuery Validate引數說明

  jquery.validate.js是jquery下的一個驗證外掛,功能比較強大,早就有所耳聞但是一隻沒有動手用過,現在在於能夠研究一下了。 這裡轉載一篇前輩寫的文章,在我自己的理解上修改了一下,僅作記錄。 先貼一個國內某大公司的程式碼: JavaScript程式碼 &

Jquery Validate 相關引數及常用的自定義驗證規則

IT程式設計師開發必備-各類資源下載清單 Jquery Validate 相關引數 //定義中文訊息 var cnmsg = { required: “必選欄位”, remote: “請修正該欄位”, email: “請輸入正確格式的電子郵件”, url:

Jquery validate(submitHandler函數)驗證通過發送Ajax

type handler 確認密碼 fun stat rul color length duplicate js代碼: 1 $(function() { 2 $(‘#form‘).validate({ 3 onkeyup : false,

Jquery Plugins Jquery Validate

query 數字 tro func dem 字符 後綴名 工具 下載 Jquery Validate 一.什麽是Jquery Validate: jQuery Validate 插件為表單提供了強大的驗證功能。 二.常用值: 1 required

了解jQuery Validate.JS後不用再為正則驗證頭疼

url 理解 程序 valid 客戶 pre 提高 -s log jQuery Validate 是功能豐富的正則驗證插件,為客戶端提供了強大的驗證功能,同時提供了大量的正則選項,滿足應用程序各種需求。該插件捆綁了一整套有用的驗證方法,同時包括URL驗證和電子郵件驗證,為

JS驗證控件jQuery Validate

left pass mes 源碼 bsp targe 單標簽 pac get jQuery Validate 插件為表單提供了強大的驗證功能,讓客戶端表單驗證變得更簡單,同時提供了大量的定制選項,滿足應用程序各種需求。該插件捆綁了一套有用的驗證方法,包括 URL 和電子郵件

jQuery.validate 的form校驗

是我 顯示 用戶 put text 運行 scl htm 表單 jQuery驗證框架 : 基本html代碼: 1   <script src="js/jquery-1.9.1.js"></script> 2 <script src

jq中的表單驗證插件------jquery.validate

此外 郵箱 method 你們 ostc [0 ade 使用 js代碼 今天我們來說一下表單驗證,有人說我們在進行表單驗證的時候使用正則來驗證是非常麻煩的,現在我來給大家介紹一下表單驗證的插件:jquery.validate.min.js 它是與jquery一起結合

jquery.validate

hand validator fun 兩個 arc 郵政編碼 {0} 文件 字節 ---恢復內容開始--- 默認校驗規則(1) required:true 必輸字段(2) remote:"check.php" 使用ajax方

jQuery Validate驗證框架詳解

lec false 樣式 廈門 adding 常用 invalid util 類名 jQuery校驗官網地址:http://bassistance.de/jquery-plugins/jquery-plugin-validation 一、導入js庫 <scri

怎樣更靈活的是使用jquery.validate--未完待續

12px 樣式 fault rate ada tin 結果 def 引入 jqueryValidate的具體使用方法很多,這裏就不在贅述,這一次只談一下怎樣簡單的實現表單驗證。 頁面引入js <script src="~/js/jquery-migrate-1.8

Jquery Validate 默認校驗規則及常用的自定義驗證規則

字符 eth ber exp string amp 手機 zip 子郵件 Jquery Validate 相關參數及常用的自定義驗證規則 一、官網地址:http://bassistance.de/jquery-plugins/jquery-plugin-validatio

jQuery Validate

下載 bsp add 電子郵件 rom min mov 客戶 pretty jQuery Validate jQuery Validate 插件為表單提供了強大的驗證功能,讓客戶端表單驗證變得更簡單,同時提供了大量的定制選項,滿足應用程序各種需求。 該插件捆綁了一套有用的驗

關於jquery validate 的問題

validate har val 位置 red bug eth 需要 出現 使用name進行驗證時 maxSNR: "required", lon: "required", lat: "

驗證插件——jquery.validate.js

上傳文件 type=file load net ida 焦點 tro file date 下載地址:http://download.csdn.net/download/s592652578/9457421 教程:http://www.runoob.com/jquery/jq

Jquery.validate.js表單驗證

first 博客 插件 怎麽辦 row form表單 顯示 ble logs 前言:表單驗證是十分常見的需求。公司做運維系統需要大量的編輯/新增表單,編輯之後提交,提交前需要進行表單驗證,驗證成功才能發起POST請求。由於項目前端大部分是基於Bootstrap開發的,

jquery validate表單驗證

文件 json 格式 pop 第一個 tool oar blank 上傳 一、目的 為了更好地實現人機交互,使用jQuery封裝庫中的validate插件,在用戶填寫表單時,可以快速地對用戶填寫的數據進行驗證,並做出反饋。 二、validate插件簡介

利用jquery.validate異步驗證用戶名是否存在

rip 利用 lte false ret message name 用法 了解 經過上百次的試驗試和搜索,終於把jquery.validate的各種功能用法了解清楚,網上關於jquery.validate的AJAX表單驗證比較少,特別是對rules裏面的remote提得比較

jquery.validate不用submit提交,用js提交的怎麽觸發驗證

div content function rep reply validate ida val cli 用 button.click提交 舉例看看 $("#form").validate();$("#btn).click(function(){

layer,Jquery,validate實現表單驗證,刷新頁面,關閉子頁面

名稱 ron primary ocl span () bsp money 新頁面 1、表單驗證            //獲取父層 var index = parent.layer.getFrameIndex(window.na