Jquery 验证,如果出现错误,如何运行自定义代码

发布于 2024-12-16 16:20:48 字数 838 浏览 1 评论 0 原文

我想检查表单中多个字段的验证。如果有任何错误,我想运行一些自定义 jQuery 来隐藏和显示各种元素。

我进行了下面的验证,我的问题是现在如何检查运行自定义代码是否有错误?

$("#signupForm").validate({
        rules: {
            firstname: "required",
            lastname: "required",
            username: {
                required: true,
                minlength: 2
            },
            password: {
                required: true,
                minlength: 5
            },
            confirm_password: {
                required: true,
                minlength: 5,
                equalTo: "#password"
            },
            email: {
                required: true,
                email: true
            },
            topic: {
                required: "#newsletter:checked",
                minlength: 2
            },
            agree: "required"
        },

I want to check for validation on multiple fields in a form. If there are any errors whatsoever I want to run some custom jQuery to hide and show various elements.

I have the validation below, my question is how do I now check if there are errors to run my custom code?

$("#signupForm").validate({
        rules: {
            firstname: "required",
            lastname: "required",
            username: {
                required: true,
                minlength: 2
            },
            password: {
                required: true,
                minlength: 5
            },
            confirm_password: {
                required: true,
                minlength: 5,
                equalTo: "#password"
            },
            email: {
                required: true,
                email: true
            },
            topic: {
                required: "#newsletter:checked",
                minlength: 2
            },
            agree: "required"
        },

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

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

发布评论

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

评论(1

青瓷清茶倾城歌 2024-12-23 16:20:48

您可以在 validate 之后调用 form() 方法:

if($('form')
      .validate(RULES)
      .form()){
    //put your code here
}

请参阅 验证器对象

You can call the form() method after the validate:

if($('form')
      .validate(RULES)
      .form()){
    //put your code here
}

See the documentation for the Validator Object.

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