js常用刷新页面的操作
Posted Ethan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js常用刷新页面的操作相关的知识,希望对你有一定的参考价值。
一、手动刷新
1,history.go(0)
2,location.reload()
3,location=location
4,location.assign(location)
5,document.execCommand(‘Refresh‘)
6,window.navigate(location)
7,location.replace(location)
8,document.URL=location.href
二、自动刷新
<meta http-equiv="refresh" content="20">
每20秒刷新一次
三、页面自动跳转
<meta http-equiv="refresh" content="20;url=http://www.baidu.net">
20秒后,在跳转值www.baidu.com
以上是关于js常用刷新页面的操作的主要内容,如果未能解决你的问题,请参考以下文章