解决window.history.go(-1)执行后不刷新页面的问题

2021-03-10 22:33

阅读:1396

标签:cat   load   color   bsp   iphone   persist   class   读取   ati   

在iphone上出现了window.history.go(-1)执行后不刷新页面的问题,安卓不会有这个问题。

解决方法为在返回后的页面加上:

window.addEventListener(pageshow, function(e) {
    //如果检测到页面是从“往返缓存”中读取的,刷新页面
    if (e.persisted) {
        window.location.reload();
    }
});

 

解决window.history.go(-1)执行后不刷新页面的问题

标签:cat   load   color   bsp   iphone   persist   class   读取   ati   

原文地址:https://www.cnblogs.com/luoyihao/p/12665868.html


评论


亲,登录后才可以留言!