1 //移动端浏览器 网页缓存 2 window.addEventListener('pageshow', function(event) { 3 4 if(event.persisted || window.performance && 5 window.performance.navigation.type == 2){ 6 alert(111) 7 location.reload(); 8 } 9 })