jquery validate添加自定义验证规则(验证邮箱 邮政编码)
代码如下:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "https://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>validate.js拓展验证</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="jquery.validate.js"></script>
<script type="text/javascript" src="validate.expand.js"></script>
</head>
<body>
<form action="" method="get" id="tinyphp">
<input type="text" value="" name="iszipcode" />
<input type="submit" value="提交" />
</form>
<script type="text/javascript">
$("#tinyphp").validate({
// 添加验证规则
rules: {
iszipcode: { //验证邮箱
iszipcode: true
}
}
});
</script>
</body>
</html>
validate.expand.js
. 代码如下:
jquery.validator.addmethod("iszipcode", function(value, element) {
var tel = /^[0-9]{6}$/;
return this.optional(element) || (tel.test(value));
}, "请正确填写您的邮政编码");
添加多个验证方法
. 代码如下:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "https://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>validate.js拓展验证</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="jquery.validate.js"></script>
<script type="text/javascript" src="validate.expand.js"></script>
</head>
<body>
<form action="" method="get" id="tinyphp">
邮编:<input type="text" value="" name="iszipcode" /><br /><br />
名字:<input type="text" value="" name="username" />
<input type="submit" value="提交" />
</form>
<script type="text/javascript">
$("#tinyphp").validate({
// 添加验证规则
rules: {
iszipcode: { //验证邮箱
iszipcode: true
},
username:{
required: true,
username: true,
rangelength: [5,10]
}
},
//重设提示信息,可省略
messages:{
username: {
required: "请填写用户名",
rangelength: "用户名必须在5-10个字符之间"
}
}
});
</script>
</body>
</html>
validate.expand.js
. 代码如下:
jquery.validator.addmethod("username", function(value, element) {
return this.optional(element) || /^[\u0391-\uffe5\w]+$/.test(value);
}, "用户名必须在5-10个字符之间");
jquery.validator.addmethod("iszipcode", function(value, element) {
var tel = /^[0-9]{6}$/;
return this.optional(element) || (tel.test(value));
}, "请正确填写您的邮政编码");
推荐阅读
-
jQuery Validate 相关参数及常用的自定义验证规则
-
jquery validate添加自定义验证规则(验证邮箱 邮政编码)
-
使用jquery.validate自定义方法教程实现手机号码或者固话至少填写一个的逻辑验证
-
jQuery Validate 验证,校验规则写在控件中的具体实例
-
jquery validate 自定义验证方法介绍 日期验证
-
jQuery Validate插件自定义验证规则的方法
-
validate校验及自定义验证规则
-
jQuery表单验证中自定义验证规则
-
jQuery表单验证中自定义验证规则
-
jquery.validate.js addMethod添加自定义方法无法作为class验证规则