我正在使用 Ajax 通过 php 文件修改 mysql 数据库中的一些数据。我已经编写了代码,以便 php 文件回显“OK”或“ERROR”。我已经检查了 alert(ret) 并且工作正常。但问题在于 if (ret=="OK")。它没有进入这个声明。有人可以帮帮我吗?
xmlhttp=new XMLHttpRequest();
xmlhttp.onreadystatechange=function(){
if (xmlhttp.readyState==4 && xmlhttp.status==200){
document.getElementById('Store_cards_action_form_close').click();
ret = xmlhttp.responseText;
if (ret=="OK"){
alert("Congratulations. Transaction Successful.");
document.location.reload();
}
else{
alert("You have Insufficient Coins to buy this Card!");
}
}
}
xmlhttp.open("GET","script_card_transaction.php?" + para,true);
xmlhttp.send();