別のページ (pagetwo.html) へのリンクを保持するホームページ (home.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" > "ページ 2 の中に何か入れて、最初の試行で正しい pagetwo.html が表示されるように、ページがすぐに更新されるようにすることはできますか?
ありがとうございました