0
我想驗證電子郵件,這裏有什麼問題。 返回false不工作得到ajax裏面存在的變量的值
$.validator.addMethod("email_exist", function(value, element, arg){
var x = 0;
$.ajax({
url: '../signup/validateemail.php',
type: 'post',
data: 'email_address='+value,
cache:false,
success: function(response) {
if(response == 0){
x++;
}
}
});
alert(x);
if(x > 0){
return false;
}else{
alert('yeh');
return true;
}
return true;
},'');
因爲AJAX是要求非同步燁 –
,感謝名單花花公子 – SagarPPanchal