如果我们要制作一个消息提醒的功能,如何让标题提示【新消息】?
元素模板为您解答
只需要加入下面JS代码
var newMessageRemind = function () {
var i = 0,
title = document.title,
loop;
return {
show: function () {
loop = setInterval(function () {
i++;
if ( i == 1 ) document.title = '【新消息】' + title;
if ( i == 2 ) document.title = '【 】' + title;
if ( i == 3 ) i = 0;
}, 800);
},
stop: function () {
clearInterval(loop);
document.title = title;
}
};
} ();
调用显示新消息提示:newMessageRemind.show();
调用取消新消息提示:newMessageRemind.stop();