onLoad() {
if (window.history && window.history.pushState) {
history.pushState(null, null, document.URL);
window.addEventListener("popstate", this.show, false);
}
},
onUnload() {
window.removeEventListener("popstate", this.show, false);
},
methods: {
show(){
alert('监听到啦')
}
}
uni-app 监听浏览器返回事件
最新推荐文章于 2024-08-22 11:21:06 发布
关键词由CSDN通过智能技术生成