更新文本文件的内容时,它不会更新。相反,我必须删除我的谷歌浏览器中的所有缓存和其他内容,以使其刷新。但是,它在使用 Apache 服务器(本地主机)时确实有效。
我尝试添加 a: <meta http-equiv="expires" content="Mon, 26 Jul 1997 05:00:00 GMT"/> <meta http-equiv="pragma" content="no-cache" />
,但问题仍然存在。
function MakeRequest()
{
var xmlHttp = getXMLHttp(); // just a basic XML request
xmlHttp.onreadystatechange = function()
{
if(xmlHttp.readyState == 4)
{
HandleResponse(xmlHttp.responseText);
}
}
xmlHttp.open("GET", "counter.txt", true);
xmlHttp.send(null);
}
我有另一个 JavaScript 只是在一个 div 中打印它:(定时运行有一些延迟)
document.getElementById('counterHolder').innerHTML = response;