jquery 验证插件 - 仅验证第一个提交的

发布于 2024-12-04 01:49:29 字数 287 浏览 0 评论 0原文

使用带有验证插件的 jquery

以下是一些代码: http://jsfiddle.net/WKXn2/7/

我不明白为什么:

  1. 点击时提交按钮验证仅在首次使用任何验证类提交时完成。如果没问题,即使其他文件无效,它也会通过。在此示例中,它仅在第三个字段处停止。
  2. 为什么“名称”规则不起作用?
  3. 为什么添加到电子邮件规则后所需规则不起作用?

Using jquery with validation plugin

Here is some code:
http://jsfiddle.net/WKXn2/7/

I can't figure out why:

  1. 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.
  2. Why does "name" rule not work?
  3. Why does required rule not work when added to email rule?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

所有深爱都是秘密 2024-12-11 01:49:29

您的代码中有一些错误。

试试这个:

     $().ready(function() {

            $("#myForm").validate({
                 rules: {
                      required: {
                           required: true
                      },
                      email: {
                           required: true,
                           email: true
                      },
                     name: {
                         required: true
                     }
                 }
            });
       });

而且,您的表单上没有任何方法。
您可以在此处找到有关规则和选项的文档
http://bassistance.de/jquery-plugins/jquery-plugin-validation/

You have some errors in your code.

Try this:

     $().ready(function() {

            $("#myForm").validate({
                 rules: {
                      required: {
                           required: true
                      },
                      email: {
                           required: true,
                           email: true
                      },
                     name: {
                         required: true
                     }
                 }
            });
       });

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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文