演示效果看本站,代码添加到首页或者页尾等地方即可。
其中“你不喜欢我了吗?”可改为自己的任何信息
<script>
document.addEventListener('visibilitychange',function(){
if(document.visibilityState=='hidden') {
normal_title=document.title;
document.title='你不喜欢我了吗?';
}
else
document.title=normal_title;
});
</script>