vue监听页面离开事件
vue监听页面离开事件可加入变量判断,根据离开次数加入不同的事件var app = new Vue({el: '#app',data() {},mounted() {document.addEventListener('visibilitychange', this...
·
代码已上传至github
github代码地址:https://github.com/Miofly/mio.git
vue监听页面离开事件
可加入变量判断,根据离开次数加入不同的事件
var app = new Vue({
el: '#app',
data() {
},
mounted() {
document.addEventListener('visibilitychange', this.handleVisiable)
},
destroyed() {
document.removeEventListener('visibilitychange', this.handleVisiable)
},
methods: {
handleVisiable(e) { // 监听页面离开事件
if (e.target.visibilityState === 'visible') {
window.location.href = 'http://www.baidu.com'
}
}
}
})
更多推荐
已为社区贡献8条内容
所有评论(0)