1.案例
1.1 Html form表单内容
<form class="cForm" id="cForm" method="post" action=""> <p> <label for="user">用户名</label> <input id="user" name="user" required minlength="3"> </p> <p> <label for="password">密码</label> <input id="password" type="password" maxlength="12" name="password"> </p> <p> <input class="submit" type="submit" value="登录"> </p> </form>
1.2 js代码(进行表单自验证)
<script>$().ready(function() {$("#cForm").validate({onsubmit:true,// 是否在提交是验证onfocusout:false,// 是否在获取焦点时验证onkeyup :false,// 是否在敲击键盘时验证 rules: { //规则user: { //要对应相对应的input中的name属性required: true},password: {required: true} }, messages:{ //验证错误信息 user: {required: "请输入用户名"},password: {required: "请输入密码"} }, submitHandler: function(form) { //通过之后回调 //进行ajax传值 $.ajax({url : "{:U('user/index')}",type : "post",dataType : "json",data: {user: $("#user").val(),password: $("#password").val() },success : function(msg) {//要执行的代码 } }); }, invalidHandler: function(form, validator) {return false;} }); });</script>
1.3在控制器中对ajax传递的数据进行处理
把ajax传到控制器中的数据进行处理,返回结果。
1.4效果展示
2.validate的一些验证参数
2.1使用表单自验证可以通过导入js库
<script src="http://static.runoob.com/assets/jquery-validation-1.14.0/lib/jquery.js"></script> <script src="http://static.runoob.com/assets/jquery-validation-1.14.0/dist/jquery.validate.min.js"></script>
可在官网进行下载
默认的校验规则
序号 | 规则 | 描述 |
---|---|---|
1 | required:true | 必须输入的字段。 |
2 | remote:"check.php" | 使用 ajax 方法调用 check.php 验证输入值。 |
3 | email:true | 必须输入正确格式的电子邮件。 |
4 | url:true | 必须输入正确格式的网址。 |
5 | date:true | 必须输入正确格式的日期。日期校验 ie6 出错,慎用。 |
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。 |
2.2将校验规则写到 js 代码中
就像我上面写的例子,直接把验证规则和提示信息写在js代码中
$().ready(function() { // 在键盘按下并释放及提交后验证提交表单$("#signupForm").validate({rules: {firstname: "required",lastname: "required",username: {required: true,minlength: 2},password: {required: true,minlength: 5},confirm_password: {required: true,minlength: 5,equalTo: "#password"},email: {required: true,email: true},topic: {required: "#newsletter:checked",minlength: 2},agree: "required"},messages: {firstname: "请输入您的名字",lastname: "请输入您的姓氏",username: {required: "请输入用户名",minlength: "用户名必需由两个字母组成"},password: {required: "请输入密码",minlength: "密码长度不能小于 5 个字母"},confirm_password: {required: "请输入密码",minlength: "密码长度不能小于 5 个字母",equalTo: "两次密码输入不一致"},email: "请输入一个正确的邮箱",agree: "请接受我们的声明",topic: "请选择两个主题"} });
•校验规则中的名字必须与input中的name值对应
2.3常用方法及注意问题
2.3.1我们可以用其他方式替代默认的 submit
$().ready(function() {$("#signupForm").validate({submitHandler:function(form){ //表单提交后要执行的内容 form.submit();} }); });
使用ajax //跟我上面的ajax传值差不多
$(".selector").validate({ submitHandler: function(form) { $(form).ajaxSubmit(); } })
2.3.2debug,只验证不提交表单
$().ready(function() {$("#signupForm").validate({debug:true}); });
如果一个页面中有多个表单都想设置成为 debug,则使用:
$.validator.setDefaults({debug: true })
2.3.3ignore:忽略某些元素不验证
ignore: ".ignore"
2.3.4更改错误信息显示的位置
errorPlacement:Callback
指明错误放置的位置,默认情况是:error.appendTo(element.parent());即把错误信息放在验证的元素后面。
errorPlacement: function(error, element) { error.appendTo(element.parent()); }
2.3.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; }
2.3.6每个字段验证通过执行函数
success: function(label) {// set as text for IElabel.html(" ").addClass("checked");//label.addClass("valid").text("Ok!") }
2.3.7验证的触发方式修改
触发方式 | 类型 | 描述 | 默认值 |
---|---|---|---|
onsubmit | Boolean | 提交时验证。设置为 false 就用其他方法去验证。 | true |
onfocusout | Boolean | 失去焦点时验证(不包括复选框/单选按钮)。 | true |
onkeyup | Boolean | 在 keyup 时验证。 | true |
onclick | Boolean | 在点击复选框和单选按钮时验证。 | true |
focusInvalid | Boolean | 提交表单后,未通过验证的表单(第一个或提交之前获得焦点的未通过验证的表单)会获得焦点。 | true |
focusCleanup | Boolean | 如果是 true 那么当未通过验证的元素获得焦点时,移除错误提示。避免和 focusInvalid 一起用。 | false |
•重置表单 很实用
$().ready(function() {var validator = $("#signupForm").validate({submitHandler:function(form){alert("submitted"); form.submit();} });$("#reset").click(function() {validator.resetForm();});});
2.3.8异步验证
使用 ajax 方式进行验证,默认会提交当前验证的值到远程地址,如果需要提交其他的值,可以使用 data 选项。
remote: {url: "check-email.php", //后台处理程序type: "post", //数据发送方式dataType: "json", //接受数据格式 data: { //要传递的数据username: function() {return $("#username").val();}} }
2.3.9添加自定义校验
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)); }, "请正确填写您的邮政编码");
2.3.10radio 和 checkbox、select 的验证
列举一个demo统一验证一下
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>jQuery Validate radio(单选按钮)、checkbox(复选按钮)和 select(下拉框)</title><link rel="stylesheet" media="screen" href="http://static.runoob.com/assets/jquery-validation-1.14.0/demo/css/screen.css"> <script src="http://static.runoob.com/assets/jquery-validation-1.14.0/lib/jquery.js"></script> <script src="http://static.runoob.com/assets/jquery-validation-1.14.0/dist/jquery.validate.min.js"></script> <script src="http://static.runoob.com/assets/jquery-validation-1.14.0/dist/localization/messages_zh.js"></script><style> .block { display: block; } form.cmxform label.error { display: none; } </style></head> <body><div id="main"><form class="cmxform" id="form1" method="get" action=""><fieldset><legend>通过 radio(单选按钮)和 checkbox(复选按钮)验证表单</legend><fieldset><legend>性别</legend><label for="gender_male"><input type="radio" id="gender_male" value="m" name="gender" required>男性</label><label for="gender_female"><input type="radio" id="gender_female" value="f" name="gender">女性</label><label for="gender" class="error">请选择您的性别。</label></fieldset><fieldset><legend>婚姻状况</legend><label for="family_single"><input type="radio" id="family_single" value="s" name="family" required>单身</label><label for="family_married"><input type="radio" id="family_married" value="m" name="family">已婚</label><label for="family_other"><input type="radio" id="family_other" value="o" name="family">其他</label><label for="family" class="error">您选择您的婚姻状况。</label></fieldset><p><label for="agree">请同意我们的条款</label><input type="checkbox" class="checkbox" id="agree" name="agree" required><br><label for="agree" class="error block">请同意我们的条款!</label></p><fieldset><legend>垃圾邮件</legend><label for="spam_email"><input type="checkbox" class="checkbox" id="spam_email" value="email" name="spam[]" required minlength="2">垃圾邮件 - E-Mail</label><label for="spam_phone"><input type="checkbox" class="checkbox" id="spam_phone" value="phone" name="spam[]">垃圾邮件 - Phone</label><label for="spam_mail"><input type="checkbox" class="checkbox" id="spam_mail" value="mail" name="spam[]">垃圾邮件 - Mail</label><label for="spam[]" class="error">请选择至少两种类型的垃圾邮件。</label></fieldset><p><input class="submit" type="submit" value="提交"></p></fieldset> </form><form id="selecttest"><h2>一些关于 select 的测试</h2><p><label for="jungle">请选择一个丛林名词</label><br><select id="jungle" name="jungle" title="请选择一个丛林名词!" required><option value=""></option><option value="1">Buga</option><option value="2">Baga</option><option value="3">Oi</option></select></p><p><label for="fruit">请选择至少两种水果</label><br><select id="fruit" name="fruit" title="请选择至少两种水果!" required 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></p><p><label for="vegetables">请选择不超过两种蔬菜</label><br><select id="vegetables" name="vegetables" title="请选择不超过两种蔬菜!" required maxlength="2" multiple="multiple"><option value="p">Potato</option><option value="t">Tomato</option><option value="s">Salad</option></select></p><p><label for="cars">请选择至少两种但不超过三种汽车</label><br><select id="cars" name="cars" title="请选择至少两种但不超过三种汽车!" required rangelength="[2,3]" multiple="multiple"><option value="m_sl">Mercedes SL</option><option value="o_c">Opel Corsa</option><option value="vw_p">VW Polo</option><option value="t_s">Titanic Skoda</option></select></p><p><input type="submit" value="Validate Select 测试"></p> </form></div></body> </html>
js代码
<script> $.validator.setDefaults({submitHandler: function() {alert("submitted!");} });$(document).ready(function() {$("#form1").validate();$("#selecttest").validate(); }); </script>
大家有什么意见或者建议可以留言指导、批评