simonzhd 发表于 2023-3-25 19:43:15

移动端微信浏览器回退到上一页清空缓存的方法,亲测有效

if (document.addEventListener) {
      /*event.persisted 判断浏览器是否有缓存, 有为true, 没有为false*/
      window.addEventListener('pageshow', function (event) {
            if (event.persisted || window.performance && window.performance.navigation.type == 2){
                location.reload();
            }
      },false);
}

codefan 发表于 2023-4-13 21:37:08

8错,有效证明
页: [1]
查看完整版本: 移动端微信浏览器回退到上一页清空缓存的方法,亲测有效