离开(切换)当前页面时改变页面title

Posted 二小怪

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了离开(切换)当前页面时改变页面title相关的知识,希望对你有一定的参考价值。

document.addEventListener(\'visibilitychange\', function () {
    if (document.visibilityState == \'hidden\') {
        normal_title = document.title;
        document.title = \'客官请留步...\';
    } else document.title = normal_title;
});

离开前:

离开后:

以上是关于离开(切换)当前页面时改变页面title的主要内容,如果未能解决你的问题,请参考以下文章

vue 切换页面时,监听用户是不是修改过信息

blur和focus的运用

Js/Jquery 关闭 离开或刷新当前页面时提醒,和执行解绑取消提醒

静态页面中导航切换时的当前状态(四中方法)

react中实现路由切换时离开页面确认弹窗提示

onbeforeunload 事件在即将离开当前页面(刷新或关闭)时触发。