移动端微信浏览器回退到上一页清空缓存的方法,亲测有效
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);
}
8错,有效证明
页:
[1]