1

我在 Google Chrome 中的聊天脚本有问题。有时响应文本是空的,直到您重新加载页面,但有时它运行良好。它每秒打开一个 xmlhttp 连接,如果第一个好,那么后面的也好。在 Firefox 中它总是很好。

var url = "text.php";
xmlHttp.open("GET", url, true);
xmlHttp.onreadystatechange = myfunc;
xmlHttp.send(null);

function myfunc()
{
    if (xmlHttp.readyState == 4 || xmlHttp.readyState == "complete")
    {
        var msg = xmlHttp.responseText;
        alert(msg);
    }
}
4

1 回答 1

0

试试这个

var xmlHttp;
xmlHttp=new XMLHttpRequest();
var url = "text.php";
xmlHttp.onreadystatechange = function()
{
    if (xmlHttp.readyState==4 && xmlHttp.status==200)
    {
        var msg = xmlHttp.responseText;
        alert(msg);
    }
}
xmlHttp.open("GET", url, true);
xmlHttp.send(null);
于 2013-08-10T14:43:03.627 回答