使用 jQuery Validate 验证两个字段
我正在使用 jQuery 验证插件: http://bassistance.de/jquery-plugins/jquery-plugin-validation/
简单演示:
<input type="text" name="email" class="required email" />
<input type="text" name="email_confirm" class="required email" />
如何使用 jQuery 或 jQuery 验证插件检查两个输入中的值是否相同。
我刚刚尝试了 equalto
并且它有效:
rules: { email: 'required', email2: {equalTo: '.email'}
I'm using jQuery Validate Plugin:
http://bassistance.de/jquery-plugins/jquery-plugin-validation/
Simple demo:
<input type="text" name="email" class="required email" />
<input type="text" name="email_confirm" class="required email" />
How to check if the value in the two inputs are the same with jQuery or with jQuery Validate Plugin.
I just tried equalto
and it works:
rules: { email: 'required', email2: {equalTo: '.email'}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过查看演示页面 http://jquery.bassistance.de/validate/demo/ 您可以使用“equalTo”验证两个应该相等的字段:
要使用类方法来执行此操作,您只需找到语法即可。我找不到 equalTo 属性,但它可能类似于:
By looking at the demo page at http://jquery.bassistance.de/validate/demo/ you can validate 2 fields that should be equal by using "equalTo":
To do it using the class method, you just need to find the syntax. I couldn't find it for the equalTo attribute, but it is probably something like: