我不知道爲什麼不工作...我使用$.ajax
運行file.php並通過它(POST
)輸入值 此文件.PHP工作,但我的AJAX功能不起作用:成功ajax:如果是200狀態代碼運行功能其他功能
$.ajax({
type: 'POST',
url: 'file.php',
data: { email: $('#andressemail').val() },
success: function(data,status){
if(status === '200'){
newmessage();
}
else{
erroremessage();
}
}
});
funtion newmessage(){
alert('ok');
}
funtion erroremessage(){
alert('no');
}
的file.php工作正常(它在我的通訊增加了一個用戶),但$.ajax
不起作用,狀態碼是不是200
爲什麼?
試試這個:status =='success' –