-
规则默认约定的是元素的name值查看全部
-
基本验证方法查看全部
-
username:{ required:true, postcode:true //或 postcode:"中国" -----这里的"中国"会被传给{0} } …… $.validator.addMethod("postcode", function(value, element,params) { var postcode= /^[0-9]{6}$/; return this.optional(element) || (postcode.test(value)); }, $.validator.format("请填写正确的{0}邮编!"));查看全部
-
自定义验证方法:addMethod(name,method,[,message]) name:方法名称 method:function(value,element,params)方法逻辑 message:提示信息查看全部
-
选择器扩展: :blank 选择所有值为空的元素 :filled 选择所有值不为空的元素 :unchecked 选择所有没有被选中的元素查看全部
-
validate()方法配置项:showErrors、errorPlacement、success、highlight、unhighlight查看全部
-
validate()方法配置项:errorClass、validClass、errorElement、wrapper、errorLabelContainer、errorContainer查看全部
-
onsubmit()、onfocusout()、onkeyup()、onclick()、focusInvalid、focusClearup查看全部
-
validate()方法配置项查看全部
-
format()方法格式化字符串,主要用于验证规则的提示语言,与验证没有多大关系。查看全部
-
Validator对象查看全部
-
valid()方法:检查表单或某些元素是否有效。 $("#checkBtn").click(function (){ alert($("#demoForm").valid()?"填写正确":"填写错误"); });查看全部
-
password:{ required:true }, " confirm-password":{ required: true, equalTo:"#password", }查看全部
-
jQuery表单验证插件:https;//plugins.jquery.com/tag/validate/ jQuery Validation插件是最常用的插件之一:http://jqueryvalidation.org/查看全部
-
validation基本验证方法查看全部
举报
0/150
提交
取消