网页通知
Posted YC小杨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了网页通知相关的知识,希望对你有一定的参考价值。
==传统网页通知
var time = null,index = 0;
window.onfocus = function(){//回到该页面时
clearInterval(time);
document.title = ‘Myhtml‘;
index = 0;
};
window.onblur = function(){//离开该页面时
time = setInterval(function(){
++index%2==0 ? document.title = ‘【】‘ : document.title = ‘【您有新的消息】‘
},100);
};
以上是关于网页通知的主要内容,如果未能解决你的问题,请参考以下文章