我有执行window.location=“free-listing-new.php”;
的Ajax代码,代码如下
由于某种原因,我不能使用。
$("#submitnumber1").submit(function(){
if ($("#cmobile1").val() != "" && $("#user_selected_country").val() != "" && $("#cmobile1").val().length > 8)
{
var mynumber = $("#cmobile1").val();
var userCountry = $("#user_selected_country").val();
//Ajax Call
$.ajax({
type : "POST",
url : "ajax/ajax-send-otp.php",
data : {mynumber:mynumber,userCountry:userCountry},
success : function(data) {
if(data == 2){
window.location = "free-listing-new.php";
}else{
alert("Error : " + data);
}
}
});
}
});
Html是
<form method="post" action="" id="submitnumber1">
</form>
现在,在表单提交时,如果数据为2,则用户应该返回所需页面(自由列表),但它可以.php
尝试将“return false”添加到Submit-EventHandler中。