gpt4 book ai didi

javascript - Jquery,防止重定向,验证然后提交表单

转载 作者:行者123 更新时间:2023-11-28 19:39:28 25 4
gpt4 key购买 nike

我需要验证表单并显示错误(如果有)。 (脚本的该部分正在运行)

如果没有错误,我想提交表单(没有ajax,只需像以前一样使用发布的数据继续重定向)。

我的实际代码根本不重定向。除了使用 .submit() 来发布数据之外,我没有看到任何其他方法。

如果我没有记错的话,window.location.href 不会发布数据。

 $('#contact-form').submit(function(e) {

e.preventDefault();

var count_error = 0;

// Validating ...

if(count_error == 0){
$('#contact-form').submit(); //Redirecting to the form action with posted data
}

});

最佳答案

$("#contact-form").submit(function(e) {
var count_error = 0;

// Validating ...

if (count_error == 0) {
return;
}
e.preventDefault();
});

关于javascript - Jquery,防止重定向,验证然后提交表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25355532/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com