jQuery Validate表單驗證插件 添加class屬性形式的校驗
本文實例介紹了jQuery Validate 表單驗證插件,添加class屬性形式的校驗,分享給大家供大家參考,具體內(nèi)容如下
效果如下:

一、jQuery表單驗證插件,添加class屬性形式的校驗
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jQuery表單驗證插件----添加class屬性形式的校驗</title>
<script src="../../scripts/jquery-1.3.1.js" type="text/javascript"></script>
<script src="lib/jquery.validate.js" type="text/javascript"></script>
<style type="text/css">
* { font-family: Verdana; font-size: 96%; }
label { width: 10em; float: left; }
label.error { float: none; color: red; padding-left: .5em; vertical-align: top; }
p { clear: both; }
.submit { margin-left: 12em; }
em { font-weight: bold; padding-right: 1em; vertical-align: top; }
</style>
<script type="text/javascript">
$(document).ready(function(){
$("#commentForm").validate();
});
</script>
</head>
<body>
<form class="cmxform" id="commentForm" method="get" action="">
<fieldset>
<legend>jQuery表單驗證插件----添加class屬性形式的校驗</legend>
<p>
<label for="cusername">姓名</label>
<em>*</em><input id="cusername" name="username" size="25" class="required" minlength="2" />
</p>
<p>
<label for="cemail">電子郵件</label>
<em>*</em><input id="cemail" name="email" size="25" class="required email" />
</p>
<p>
<label for="curl">網(wǎng)址</label>
<em> </em><input id="curl" name="url" size="25" class="url" value="" />
</p>
<p>
<label for="ccomment">你的評論</label>
<em>*</em><textarea id="ccomment" name="comment" cols="22" class="required"></textarea>
</p>
<p>
<input class="submit" type="submit" value="提交"/>
</p>
</fieldset>
</form>
</body>
</html>
二、默認規(guī)則
默認校驗規(guī)則:
- (1)required:true 必輸字段
- (2)remote:"check.php" 使用ajax方法調(diào)用check.php驗證輸入值
- (3)email:true 必須輸入正確格式的電子郵件
- (4)url:true 必須輸入正確格式的網(wǎng)址
- (5)date:true 必須輸入正確格式的日期 日期校驗ie6出錯,慎用
- (6)dateISO:true 必須輸入正確格式的日期(ISO),例如:2009-06-23,1998/01/22 只驗證格式,不驗證有效性
- (7)number:true 必須輸入合法的數(shù)字(負數(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
默認提示:
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}.")
},
本文已被整理到了《jquery表單驗證大全》 ,歡迎大家學(xué)習(xí)閱讀。
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助。
- jQuery驗證插件 Validate詳解
- jQuery驗證插件validate使用方法詳解
- jQuery 表單驗證插件formValidation實現(xiàn)個性化錯誤提示
- jQuery驗證插件validation使用指南
- jquery表單驗證插件(jquery.validate.js)的3種使用方式
- jQuery 驗證插件 Web前端設(shè)計模式(asp.net)
- jQuery formValidator表單驗證插件開源了 含API幫助、源碼、示例
- jquery表單驗證插件formValidator使用方法
- jQuery表單驗證插件formValidator(改進版)
- jquery實現(xiàn)簡易驗證插件封裝
相關(guān)文章
jQuery分頁插件jquery.pagination.js使用方法解析
這篇文章主要為大家詳細解析了jQuery分頁插件jquery.pagination使用方法,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-02-02
jquery輕量級數(shù)字動畫插件countUp.js使用詳解
這篇文章主要為大家詳細介紹了jquery鼠標滾動數(shù)字增加插件的使用方法,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下2019-10-10
從重置input file標簽中看jQuery的 .val() 和 .attr(“value”) 區(qū)別
這篇文章主要介紹了從重置input file標簽中看jQuery的 .val() 和 .attr(“value”) 區(qū)別 的相關(guān)資料,非常不錯具有參考借鑒價值,需要的朋友可以參考下2016-06-06
學(xué)習(xí)從實踐開始之jQuery插件開發(fā) 對話框插件開發(fā)
之所以寫下這篇文章,是想將我的想法分享給大家;對于初學(xué)者,我希望他能從這篇文章中獲取對他有用的東西,對于經(jīng)驗豐富的開發(fā)者,我希望他能指出我的不足,給我更多的意見和建議;目的就是共同進步2012-04-04
jquery validate.js表單驗證入門實例(附源碼)
這篇文章主要介紹了jquery validate.js表單驗證入門實例,為大家提供了jquery validate.js表單驗證的源碼,特別適合初學(xué)者學(xué)習(xí)validate.js表單驗證,感興趣的小伙伴們可以參考一下2015-11-11

