validate jquery怎么判断一个表单是否通过验证 20

 我来答
百里拐弯儿
2017-08-22 · TA获得超过221个赞
知道小有建树答主
回答量:220
采纳率:100%
帮助的人:130万
展开全部
validate jquery判断一个表单是否通过验证的方法是看页面是否发生跳转。
如果通过验证那么跳转页面,否则停留在原页面进行提示错误。
<html>
<head>
<title></title>
<script src="../Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>
<script src="../Scripts/jquery.validate.js" type="text/javascript"></script>
<script src="../Scripts/jquery.metadata.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
//validate自定义验证
jQuery.validator.addMethod("isZipCode", function (value, element) {
var tel = /^[0-9]{6}$/;
return this.optional(element) || (tel.test(value));
}, "请正确填写您的邮政编码");

$("#signupForm").validate({
rules: {
firstname: "required",
ybno: {
isZipCode: true
},
email: {
required: true, //表示不得为空
email: true //自带邮箱验证
},
password: {
required: true,
minlength: 5 //自带判断字符最小长度
},
confirm_password: {
required: true,
minlength: 5,
equalTo: "#password"
//自带判断当前文本框值与指定ID为password的文本框的值是否相同
}
},
messages: {
firstname: "请输入姓名",
email: {
required: "请输入Email地址",
email: "请输入正确的email地址"
},
password: {
required: "请输入密码",
minlength: jQuery.format("密码不能小于{0}个字符")
},
confirm_password: {
required: "请输入确认密码",
minlength: "确认密码不能小于5个字符",
equalTo: "两次输入密码不一致不一致"
}
}
});
});

</script>
//错误提示信息的样式
<style type="text/css">
label.error{color: Red;padding-left: 20px; border:1px solid #006655; margin-left:10px;
padding-left:0px; font-size:12px;}
input.error{border: solid 1px red;}
</style>
</head>
<body>
<form id="signupForm" method="get" action="">
<p>
<label for="firstname">Firstname</label>
<input id="firstname" name="firstname" />
</p>
<p>
<label for="ybno">邮编</label>
<input id="ybno" name="ybno" />
</p>
<p>
<label for="email">E-Mail</label>
<input id="email" name="email" />
</p>
<p>
<label for="password">Password</label>
<input id="password" name="password" type="password" />
</p>
<p>
<label for="confirm_password">确认密码</label>
<input id="confirm_password" name="confirm_password" type="password" />
</p>
<p>
轮御幽M
2017-08-21 · TA获得超过362个赞
知道小有建树答主
回答量:560
采纳率:35%
帮助的人:64.4万
展开全部
判断一个表
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式