//From other function
var check = check_abc(a,b,c);
alert (check);
function check_abc(a,b,c)
{
$.ajax({
type: "POST",
url: "abc.php",
data: { a: a,
b: b,
c: c
},
success:function(data) { //alert to get the data and make sure it was return ok.
if(data == "OK")
{
window.alert("YEA");
goOn();
}
else
{
window.alert("Testing");
noGood();
}
}
});
}
事件雖然返回「OK」(使用alert來檢查之前),但無論它從不顯示alert(「YEA」),它爲什麼如此?數據似乎不能比較在ajax中無法比較
set ** console.log(data)**成功方法的下一行。 –
什麼都沒有出來 – yan
你的數據方法不會返回任何值,爲什麼數據==「OK」返回false並且代碼去其他方法。首先檢查你的服務器響應爲什麼你沒有好或別的東西。 –