これら 2 つのメタ タグに相当するものは次のとおりです。
<meta http-equiv="refresh" content="0; URL=http://www.example.com/">
<meta http-equiv="refresh" content="35; URL=http://www.example.com/">
JavaScriptで?
これら 2 つのメタ タグに相当するものは次のとおりです。
<meta http-equiv="refresh" content="0; URL=http://www.example.com/">
<meta http-equiv="refresh" content="35; URL=http://www.example.com/">
JavaScriptで?
リフレッシュが必要な場合は、 を使用できますwindow.location.reload()
。
35 秒後に発射する必要がある場合は、setTimeout(function() { window.location.reload(); }, 35000);
別のページにリダイレクトするにwindow.location.replace('http://www.example.com')
は、ブラウザーの [戻る] ボタンで前のページをスキップするかwindow.location = 'http://www.example.com'
、ブラウザーの履歴を保存するために使用できます。