jquery 验证插件 - 仅验证第一个提交的
使用带有验证插件的 jquery
以下是一些代码: http://jsfiddle.net/WKXn2/7/
我不明白为什么:
- 点击时提交按钮验证仅在首次使用任何验证类提交时完成。如果没问题,即使其他文件无效,它也会通过。在此示例中,它仅在第三个字段处停止。
- 为什么“名称”规则不起作用?
- 为什么添加到电子邮件规则后所需规则不起作用?
Using jquery with validation plugin
Here is some code:
http://jsfiddle.net/WKXn2/7/
I can't figure out why:
- When clicking submit button validation is done only opon first filed with any validation class. If it's ok it passes even when other fileds are not valid. In this example it stops only on a 3rd filed.
- Why does "name" rule not work?
- Why does required rule not work when added to email rule?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的代码中有一些错误。
试试这个:
而且,您的表单上没有任何方法。
您可以在此处找到有关规则和选项的文档
http://bassistance.de/jquery-plugins/jquery-plugin-validation/
You have some errors in your code.
Try this:
And also, you do not have any method on your form.
You can find the documentation here regarding the rules and options
http://bassistance.de/jquery-plugins/jquery-plugin-validation/