- 返回上一页面:
window.history.go(-1); //返回上一页
window.history.back(); //返回上一页
- 返回上一页面并对上一页面刷新:
history.go(-1);location.reload();
- 刷新本页面:
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
参考鸣谢:
http://www.jb51.net/article/14397.htm