reload
- reload ()方法强迫浏览器刷新当前页面
- location.reload((false)---参数可选,默认为false,从缓存获取当前页;true则以 GET 方式,从服务器端获取最新的页面, 相当于点击 F5("刷新")
replace
location.replace(URL)---指定的URL会替换缓存页面,所以不能前进和后退
history.go(0)
location=location
location.assign(location)
document.execCommand('Refresh') //返回false
window.navigate(location) //ie下的
document.URL=location.href//返回的URL
window.location.href=URL//URL为当前页面地址,需要跳转则为跳转地址
返回并刷新
- location.replace(document.referrer);
打开新窗口的两种方式
1.window.location.href="http://www.xxx.xxx"; //在当前窗口中打开窗口
2.window.open("http://www.xxx.xxx"); //在另外新建窗口中打开窗口
页面跳转
- self.location='xxx.xxx';