js网页标题消息提醒
Posted 北方的刀郎
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js网页标题消息提醒相关的知识,希望对你有一定的参考价值。
var i = 0;
var timer;
function show() {
var title = document.title.replace("【 】", "").replace("【新消息】", "");
timer = setTimeout(function() {
if (i % 2 == 0) {
document.title = "【新消息】" + title
} else {
document.title = "【 】" + title
};
i++;
show();
}, 600);
}
show();
document.onclick = function() {
clearTimeout(timer);
document.title = document.title.replace("【 】", "").replace("【新消息】", "");
};
有些浏览器(搜狗)上下滚动提醒,有些(谷歌)闪烁提醒
以上是关于js网页标题消息提醒的主要内容,如果未能解决你的问题,请参考以下文章