Javascript 相当于 http-equiv 重定向
Javascript equivalent of http-equiv redirect
这两个元标记的等效项是什么:
<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'
保留浏览器历史记录。
这两个元标记的等效项是什么:
<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'
保留浏览器历史记录。