gpt4 book ai didi

javascript - 如果验证失败,如何在 Php 中停止重定向?

转载 作者:行者123 更新时间:2023-11-27 23:28:03 24 4
gpt4 key购买 nike

<分区>

我在 signup.php 页面中遇到问题。我想如果信息已经存在于数据库中那么这个页面应该停止重定向到下一页并显示警告框。现在的问题是我尝试了以下 jquery 代码片段,但这在我的情况下不起作用。我用谷歌搜索了这个并提供了以下解决方案,但这不起作用。

Jquery代码

function validate()
{
var email =$('#email').val();
var mobile = $('#mobile').val();

$.post("check_user.php",{ email: email,mobile:mobile}, function(result){
if(result == "0"){
alert('This email is already registered with us. Please try another.');
return false;
}
else
{
return true;
}
});
}

下面给出了我调用这个 jquery 函数的 Html 代码

HTML 代码

<form id="form1" autocomplete="on" action='/marammut_new/test.php'
method="post" enctype="multipart/form-data" onsubmit="return validate()">
...
</form>

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