我在Linux机器上安装了全新的Appache和PHP。这是我第一个测试事情是如何工作的脚本:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 5//EN"
"http://www.w3.org/TR/html5/html5.dtd"
>
<html lang="en">
<head>
<title>First Ajax</title>
<script language="javascript" type="text/javascript">
var xmlhttp;
function getNum()
{
xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = callback;
xmlhttp.open("GET" , "random.php" , true);
xmlhttp.send();
}
//When Information comes back from the server
function callback()
{
if(xmlhttp.readyState==4 && xmlhttp.status==200)
{
alert("Ready")
document.getElementById('result').innerHTML = xmlhttp.responseText;
}
else
{
alert("Nope")
}
}
</script>
</head>
<body>
<div id="result">
</div>
<input type="button" value="Get Random Number" onclick="getNum()"/>
</body>
</html>
但是,似乎行xmlhttp.readyState==4 && xmlhttp.status==200
的计算结果为false,因为返回了“Nope”。如果我将&&
替换为||
,则相同。如果我从浏览器转到localhost / random.php,它可以正常工作。我知道确切的代码适用于其他计算机。知道我被困在哪里吗?
编辑:根据@Musa的评论,我意识到readyState等于1,状态为0表示已创建对象,并且尚未调用send方法({{ 3}})。无论如何我还是迷路了。
答案 0 :(得分:0)
readyState
不直接到4,它可以在达到4之前转到其他值。
试试这样的事情
if(xmlhttp.readyState==4){
if (xmlhttp.status==200)
{
alert("Success")
document.getElementById('result').innerHTML = xmlhttp.responseText;
}
else
{
alert("Failure")
}
}