我最近设置了一个heroku php应用程序并让它根据http请求返回数据。它适用于请求,但xmlhttp请求不起作用。为什么会这样?
xmlhttp.onreadystatechange=function(){
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
//This is never called!!! Why?
displaySpot.innerHTML = xmlhttp.responseText;
}
}