0

我有一个主页 (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-->

我可以在我的“<a href="pagetwo.html”>“第二页中放入任何内容以确保它立即刷新,以便在第一次尝试时显示正确的 pagetwo.html。

谢谢

4

0 回答 0