jsp 页面返回、本页面刷新

  • 返回上一页面:

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

posted on 2017-07-28 17:06  ckx0709  阅读(1678)  评论(0编辑  收藏  举报

导航