我正在测试 jQuery Validate 插件,但在尝试验证控件时遇到了一些问题。我不想在页面中使用任何 FORM 元素。我正在尝试使用 css 选择器来获取元素并向其添加一些自定义规则。
这是我的代码
<head>
<title></title>
<script src="http://code.jquery.com/jquery-1.9.1.min.js" type="text/javascript"></script>
<script src="scripts/jquery.validate.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$('.custom').validate({
rules: {
name: 'required',
email: {
required: true,
email: true
}
},
messages: {
name: "Please specify your name",
email: {
required: "We need your email address to contact you",
email: "Your email address must be in the format of name@domain.com"
}
}
});
});
function valid() {
return $('.custom').valid();
}
</script>
<style type="text/css">
.error { color: Red; }
</style>
</head>
<body>
<form id="form" method="get" action="">
<input type="text" name="name" class="custom" /><br />
<input type="text" name="email" class="custom" /><br />
<input class="submit" type="submit" value="submit" onclick="return valid();" />
</form>
</body>
我不确定我在这里做错了什么。有人可以指出吗?jQuery.Validate 中不允许这样做吗?表单元素是验证工作的必要条件吗?
PS:如果我使用 #form ( $('#form').validate({
) 作为选择器,它工作得很好。
感谢 Senthil S