1.window.location.href = 'url' //页面跳转
2.window.location.replace(‘url’) //页面替换,将当前页面替换为参数URL,这种方法浏览器会吧参数URL替换掉缓存里的URL,不能再用前进后退访问被替换掉的URL,适用于过度页面。
2.window.location.replace(‘url’) //页面替换,将当前页面替换为参数URL,这种方法浏览器会吧参数URL替换掉缓存里的URL,不能再用前进后退访问被替换掉的URL,适用于过度页面。
3.window.location.reload(); //强制刷新页面。 参数为true时,绕过缓存重新在浏览器下载该文档。
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
这几个都可以刷新