监听页面后退 浏览器后退 showpage 事件

去年底的shopify 项目告一段落,今年初顶着疫情的压力,开始了公司一个日本租赁设备的网站,需要在进入支付之前的流程都都需要后退页面数据和服务端一致。

window.addEventListener('pageshow', function (event) {
            if(event.persisted || window.performance && window.performance.navigation.type == 2){
                console.log('window.performance.navigation.type: '+ window.performance.navigation.type)
                
            }
        },false);


 

猜你喜欢

转载自blog.csdn.net/zhanghuanhuan1/article/details/105367110