h5返回上一页面并刷新

1.window.location.href="页面";//直接跳转页面
 

2.使用history.go(-1)时

var refresh = false;
window.addEventListener('pageshow', function() {
      if (refresh ==true) {
            window.location.reload();
      }
 });
 window.addEventListener('pagehide', function() {
       refresh  = true;
  });

3.使用history.go(-1)时

if(window.performance.navigation.type==2){//返回上一页
       window.location.reload();
}

猜你喜欢

转载自blog.csdn.net/qq_35086913/article/details/110004075