jquery 提交奇怪的行为

发布于 2024-11-28 15:47:54 字数 292 浏览 1 评论 0原文

为什么如果我在提交函数中放置一些带有“if”的代码,该方法(显然)总是返回 true 并提交表单?

例如

    var test = "test";

    $("#contact_form").submit(function(){

            if (test == "random"){

            }



            return false;

    });

,每当我像这样放置一个带有或不带有任何代码的 if 时,它总是会提交。

why if I put some code with "if" inside a submit function the method (apparently) always returns a true and submits the form?

example

    var test = "test";

    $("#contact_form").submit(function(){

            if (test == "random"){

            }



            return false;

    });

whenever I put an if like this with or without any code it always submits.

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

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

发布评论

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

评论(2

俏︾媚 2024-12-05 15:47:54
$("#contact_form").submit(function(e){
    e.preventDefault();

        if (test === "random"){

        }
});

在运行任何代码之前停止默认操作。并且,添加 ===。它还检查类型。

$("#contact_form").submit(function(e){
    e.preventDefault();

        if (test === "random"){

        }
});

Stop the default action before you run any code. And, add ===. It checks against type as well.

笙痞 2024-12-05 15:47:54

这取决于您在 if 块内编写的代码。如果你错误地写了 return true 或者有任何 js 错误,那么它会提交表单。如果您在提交表单时尝试进行任何 ajax 调用,请阻止提交处理程序中的默认表单提交。这与返回 false 一样好。

$("#contact_form").submit(function(e){
   e.preventDefault();
});

It depends on what code you write inside the if block. If you write return true by mistake or have any js error then it will submit the form. If you are trying to make any ajax call when you submit the form then prevent the default form submit in the submit handler. This is as good as returning false.

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