我正在尝试不断更新目标网页上的DIV,以显示在我们的实时聊天系统队列中等待的人数。
以下代码在Chrome中运行良好,每5秒更新一次,但在IE中,它会在第一次运行时获取值,但不会更新。
<head>
<script>
setInterval(function() {
var xmlhttp;
var txt,x,i;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
xmlDoc=xmlhttp.responseXML;
x=xmlDoc.getElementsByTagName("support_session_count");
txt=x[7].childNodes[0].nodeValue;
document.getElementById("Sessions_Waiting").innerText = txt;
}
}
xmlhttp.open("GET","http://my.server.com/command.xml",true);
xmlhttp.send();
}, 5000);
</script>
</head>
答案 0 :(得分:1)
您的问题可能是IE缓存结果。这是一个常见问题。您可以强制在服务器中使用no-cache,也可以附加一个唯一的后缀。
xmlhttp.open("GET","http://my.server.com/command.xml?nocache"+(new Date().getTime()),true);