我在 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);
}
}