0

我在我的 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 方法(http://msdn.microsoft.com/en-我们/图书馆/ms753800%28v=vs.85%29.aspx)。反正我还是迷路了。

4

1 回答 1

0

readyState不会直接到 4,它可以在达到 4 之前转到其他值。试试这样的

    if(xmlhttp.readyState==4){ 
        if (xmlhttp.status==200)
        {
            alert("Success")
            document.getElementById('result').innerHTML = xmlhttp.responseText;
        }
        else
        {
            alert("Failure")
        }
    }
于 2013-10-31T14:46:02.117 回答