我在现有表单上使用 jquery 验证插件,但它没有在提交时触发。
我在浏览器中没有收到任何 javascript 错误,但什么也没发生,并且表单正在提交,这是不应该的。
这是代码:
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.11.1/jquery.validate.min.js></script>
<script type="text/javascript">
$().ready(function () {
// validate the comment form when it is submitted
$("#registrationform").validate();
// validate signup form on keyup and submit
$("#registrationform").validate({
rules: {
fullname: {
required: true,
minlength: 2,
maxlength: 50
}
},
messages: {
fullname: {
required: "Please enter a name",
minlength: "Your name must consist of at least 2 characters",
maxlength: "Your name must consist of not more than characters"
}
}
});
});
</script>
</head>
<body>
<form id="registrationform" name="registrationform" method="post" action="pageaftervalidation.html">
<table>
<tr>
<td>Name:</td>
<td><input id="fullname" name="fullname" type="text"></td>
</tr>
<tr>
<td colspan="2">
<input type="Submit" value="Submit">
</td>
</tr>
</table>
</form>
</body>
</html>
为什么它在提交时没有触发任何验证?
发现了问题。
我不能有两个验证功能。从演示中,我尝试在提交和 keyup 时验证表单,但我不需要因为 keyup 验证两者都进行。
所以要解决上述问题,我删除了该行
$("#registrationform").validate();