validate is a good jq plug-in that provides powerful validation functions, making client form validation easier. It also provides a large number of customization options to meet various application needs. The plugin bundles a set of useful validation methods, including URL and email validation, and provides an API for writing user-defined methods.
The most common occasion for using JavaScript is form validation, and jQuery, as an excellent JavaScript library, also provides an excellent form validation plug-in----Validation. Validation is one of the oldest jQuery plug-ins, has been verified by different projects around the world, and has been praised by many web developers. As a standard verification method library, Validation has the following characteristics:
1. Built-in validation rules: It has 19 types of built-in validation rules such as required, numbers, emails, URLs and credit card numbers
2. Customization Verification rules: Verification rules can be easily customized
3. Simple and powerful verification information prompts: Verification information prompts are provided by default, and the function of customizing the default prompt information is provided
4. Real-time verification: Possible to pass The keyup or blur event triggers validation, not just when the form is submitted
validate.js download address: http://plugins.jquery.com/project/validate
metadata.js download address: http://plugins.jquery.com/project/metadata Usage:
1. Introduce the jQuery library and Validation plug-in
The code is as follows :
<script src="scripts/jquery-1.6.4.js" type="text/javascript"></script> <script src="scripts/jquery.validate.js" type="text/javascript"></script>
2. Determine which form needs to be verified
The code is as follows:
<script type="text/javascript"> ////<![CDATA[ $(document).ready(function(){ $("#commentForm").validate(); }); //]]> </script>
3. Code verification rules for different fields and set the corresponding attributes of the fields
The code is as follows:
class="required" 必须填写 class="required email" 必须填写且内容符合Email格式验证 class="url" 符合URL格式验证 minlength="2" 最小长度为2 可验证的规则有19种: [javascript] view plaincopyprint? required: 必选字段 remote: "请修正该字段", email: 电子邮件验证 url: 网址验证 date: 日期验证 dateISO: 日期 (ISO)验证 dateDE: number: 数字验证 numberDE: digits: 只能输入整数 creditcard: 信用卡号验证 equalTo: ”请再次输入相同的值“验证 accept: 拥有合法后缀名的字符串验证 maxlength/minlength: 最大/最小长度验证 rangelength: 字符串长度范围验证 range: 数字范围验证 max/min: 最大值/最小值验证
needs to be introduced The js
code is as follows:
<script type="text/javascript" src="../../scripts/jquery-1.3.1.js"></script> <script type="text/javascript" src="lib/jquery.validate.js"></script>
The initialized HTML
code is as follows:
<script type="text/javascript"> $(function(){ $("#commentForm").validate() }) </script> <form class="cmxform" id="commentForm" method="get" action=""> <fieldset> <legend>一个简单的validate验证带验证提示的评论例子</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">网址</label> <em> </em><input id="curl" name="url" size="25" class="url" /> </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>
First look at the specifications of the default settings
Serial number
|
Rule | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | required:true | A field that must be entered. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
2 | remote:"check.php" | Use the ajax method to call check.php to verify the input value. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
3 | email:true | You must enter a correctly formatted email. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
4 | url:true | You must enter the URL in the correct format. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
5 | date:true | A date in the correct format must be entered. Date verification ie6 error, use with caution. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
6 | dateISO:true | You must enter the date (ISO) in the correct format, for example: 2009-06-23, 1998/01/22. Only the format is verified, not the validity. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
7 | number:true | Legal numbers (negative numbers, decimals) must be entered. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
8 | digits:true | An integer must be entered. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
9 | creditcard: | A valid credit card number must be entered. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
10 | equalTo:"#field" | The input value must be the same as #field. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
11 | accept: | Enter a string with a legal suffix (the suffix of the uploaded file). | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
12 | maxlength:5 | Enter a string with a maximum length of 5 (Chinese characters count as one character). | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
13 | minlength:10 | Enter a string with a minimum length of 10 (Chinese characters count as one character). | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
14 | rangelength:[5,10] | The input length must be between 5 and 10 ( Chinese characters count as one character). | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
15 | range:[5,10] | The input value must be between 5 and 10. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
16 | max:5 | The input value cannot be greater than 5. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
17 | min:10 | The input value cannot be less than 10. |
required表示必须填写的
email表示必须正确的邮箱
把验证的规格写在HTML内的class内,方法欠妥,后期的维护增加成本,没有实现行为与结构的分离
所以,可以想把HTML内的class都清空,如下:
代码如下:
<form class="cmxform" id="commentForm" method="get" action=""> <fieldset> <legend>一个简单的validate验证带验证提示的评论例子</legend> <p> <label for="cusername">姓名</label> <em>*</em><input id="cusername" name="username" size="25" /> </p> <p> <label for="cemail">电子邮件</label> <em>*</em><input id="cemail" name="email" size="25" /> </p> <p> <label for="curl">网址</label> <em> </em><input id="curl" name="url" size="25" /> </p> <p> <label for="ccomment">你的评论</label> <em>*</em><textarea id="ccomment" name="comment" cols="22" ></textarea> </p> <p> <input class="submit" type="submit" value="提交"/> </p>
js
代码如下:
$(document).ready(function(){ $("#commentForm").validate({ rules:{ username:{ required:true, minlength:2 }, email:{ required:true, email:true }, url:"url", comment:"required", valcode: { formula: "7+9" } } }); }); </script>
因为默认的提示是英文的,可以改写成
代码如下:
jQuery.extend(jQuery.validator.messages, { required: "必选字段", remote: "请修正该字段", email: "请输入正确格式的电子邮件", url: "请输入合法的网址", date: "请输入合法的日期", dateISO: "请输入合法的日期 (ISO).", number: "请输入合法的数字", digits: "只能输入整数", creditcard: "请输入合法的信用卡号", equalTo: "请再次输入相同的值", accept: "请输入拥有合法后缀名的字符串", maxlength: jQuery.format("请输入一个长度最多是 {0} 的字符串"), minlength: jQuery.format("请输入一个长度最少是 {0} 的字符串"), rangelength: jQuery.format("请输入一个长度介于 {0} 和 {1} 之间的字符串"), range: jQuery.format("请输入一个介于 {0} 和 {1} 之间的值"), max: jQuery.format("请输入一个最大为 {0} 的值"), min: jQuery.format("请输入一个最小为 {0} 的值") });
建议新建一个js,放到validate.js 下面.
关于提示的美化
代码如下:
errorElement:"em"
创建一个标签,可以自定义
代码如下:
success:function(label){ label.text(" ").addClass('success') }
这里的参数label是指向创建的标签,这里也就是”em“ 然后情况自己的内容,在加上自己的class就可以了
完整的js
代码如下:
$("#commentForm").validate({ rules:{ username:{ required:true, minlength:2 }, email:{ required:true, email:true }, url:"url", comment:"required", }, errorElement:"em", success:function(label){ label.text(" ").addClass('success') } });
相对应的css
代码如下:
em.error { background:url("images/unchecked.gif") no-repeat 0px 0px; padding-left: 16px; } em.success { background:url("images/checked.gif") no-repeat 0px 0px; padding-left: 16px; }
.success放到.error下面。。。唔唔。。具体的情况。。只可体会不可言会。。唔。。
在做项目的过程中千变万化,有时候要满足不同的需求,validate也可以单独的修改验证的信息。。
例如:
代码如下:
messages:{ username:{ required:"主人,我要填的满满的", minlength:"哎唷,长度不够耶" } }
完整的js
代码如下:
$("#commentForm").validate({ rules:{ username:{ required:true, minlength:2 }, email:{ required:true, email:true }, url:"url", comment:"required", valcode: { formula: "7+9" } }, messages:{ username:{ required:"主人,我要填的满满的", minlength:"哎唷,长度不够耶" } }, errorElement:"em", success:function(label){ label.text(" ").addClass('success') } });
这里就可以啦。
关于自定义验证规则
增加一段HTML代码
代码如下:
<p> <label for="cvalcode">验证码</label> <input id="valcode" name="valcode" />=7+9 </p>
自定一个规则
代码如下:
$.validator.addMethod("formula",function(value,element,param){ return value==eval(param) },"请正确输入验证信息");
formula是需要验证方法的名字 好比如required 必须的。
value返回的当前input的value值
param返回的是当前自定义的验证格式 好比如:7+9
在试用了eval方法 让字符串相加
完整的js
代码如下:
$.validator.addMethod("formula",function(value,element,param){ return value==eval(param) },"请正确输入验证信息"); $("#commentForm").validate({ rules:{ username:{ required:true, minlength:2 }, email:{ required:true, email:true }, url:"url", comment:"required", valcode: { formula: "7+9" } }, messages:{ username:{ required:"主人,我要填的满满的", minlength:"哎唷,长度不够耶" } }, errorElement:"em", success:function(label){ label.text(" ").addClass('success') } });
完

实现方法:1、用“$("img").delay(毫秒数).fadeOut()”语句,delay()设置延迟秒数;2、用“setTimeout(function(){ $("img").hide(); },毫秒值);”语句,通过定时器来延迟。

修改方法:1、用css()设置新样式,语法“$(元素).css("min-height","新值")”;2、用attr(),通过设置style属性来添加新样式,语法“$(元素).attr("style","min-height:新值")”。

区别:1、axios是一个异步请求框架,用于封装底层的XMLHttpRequest,而jquery是一个JavaScript库,只是顺便封装了dom操作;2、axios是基于承诺对象的,可以用承诺对象中的方法,而jquery不基于承诺对象。

增加元素的方法:1、用append(),语法“$("body").append(新元素)”,可向body内部的末尾处增加元素;2、用prepend(),语法“$("body").prepend(新元素)”,可向body内部的开始处增加元素。

删除方法:1、用empty(),语法“$("div").empty();”,可删除所有子节点和内容;2、用children()和remove(),语法“$("div").children().remove();”,只删除子元素,不删除内容。

在jquery中,apply()方法用于改变this指向,使用另一个对象替换当前对象,是应用某一对象的一个方法,语法为“apply(thisobj,[argarray])”;参数argarray表示的是以数组的形式进行传递。

去掉方法:1、用“$(selector).removeAttr("readonly")”语句删除readonly属性;2、用“$(selector).attr("readonly",false)”将readonly属性的值设置为false。

on()方法有4个参数:1、第一个参数不可省略,规定要从被选元素添加的一个或多个事件或命名空间;2、第二个参数可省略,规定元素的事件处理程序;3、第三个参数可省略,规定传递到函数的额外数据;4、第四个参数可省略,规定当事件发生时运行的函数。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

Atom editor mac version download
The most popular open source editor

WebStorm Mac version
Useful JavaScript development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1
Easy-to-use and free code editor
