很顯然,與服務器交談必須首先向服務器發送請求,然後收到響應。然而,它出現在這段代碼中,你首先收到響應,然後在下一行發送請求 - 這裏發生了什麼?JavaScript中運行命令的順序
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","gethint.php?q="+str,true);
xmlhttp.send();
http://www.w3schools.com/php/php_ajax_php.asp – Daniyal