解决微信返回按钮到上一页页面不刷新的问题

解决微信返回按钮到上一页页面不刷新的问题

<script type="text/javascript">
    window.onpageshow = function(event){
        //event.persisted 判断浏览器是否有缓存, 有为true, 没有为false
        if (event.persisted) {  
            window.location.reload();
        }
    }
</script>

猜你喜欢

转载自blog.csdn.net/rainbow8590/article/details/79235793