代码已上传至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'
                }
            }
        }
    })

 

Logo

前往低代码交流专区

更多推荐