这两个元标记的等价物是什么:
<meta http-equiv="refresh" content="0; URL=http://www.example.com/">
<meta http-equiv="refresh" content="35; URL=http://www.example.com/">
在JavaScript中?
答案 0 :(得分:1)
如果您只是需要刷新,可以使用window.location.reload()
。
如果您需要在35秒后开火,请使用setTimeout(function() { window.location.reload(); }, 35000);
要重定向到其他页面,您可以使用window.location.replace('http://www.example.com')
确保浏览器“后退”按钮跳过上一页,或window.location = 'http://www.example.com'
以保留浏览器历史记录。