h5 返回到之前的页面几种方法

1、返回上一页,不刷新history.html

window.history.go(-1); 

javascript:window.history.go(-1)

2、返回上一页并刷新页面

avascript:location.replace(this.href);event.returnValue=false;

3、返回上一页并刷新
self.location=document.referrer

4、返回上一页面刷新的是自己

javascript:document.parentWindow.location.reload();


目前整理出来的这几种,如果您还有其他的,可以提出来,补充在后面,谢谢,互帮互助

你可能感兴趣的:(html)