我有一个主页(home.html),其中包含指向单独页面的链接(pagetwo.html)。每天都会在目录中复制/替换新版本的pagetwo.html。
当我打开home.html,然后点击pagetwo.html我总是得到昨天的报告。如果我刷新页面,那么我会得到今天的报告。
我无法编辑pagetwo.html内的代码,因为每天都会创建,复制/替换此页面。唯一静态的是home.html,它有
<meta http-equiv="Cache-Control" content="no-cache">
<script>
function timedRefresh(timeoutPeriod) {
setTimeout("location.reload(true);",timeoutPeriod);
}
</script>
<body onload="JavaScript:timedRefresh(10000);"><!--refreshs pages every 10 seconds-->
我可以在“&lt; a href =”pagetwo.html“&gt;”第二页中放入任何内容,以确保它立即刷新,以便在第一次尝试时显示正确的pagetwo.html。
谢谢