A5sh.com - 全球挚爱极客社区
标题:
移动端微信浏览器回退到上一页清空缓存的方法,亲测有效
[打印本页]
作者:
simonzhd
时间:
2023-3-25 19:43
标题:
移动端微信浏览器回退到上一页清空缓存的方法,亲测有效
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
8错,有效证明
欢迎光临 A5sh.com - 全球挚爱极客社区 (https://a5sh.com/)
Powered by Discuz! X3.4