闲坐敲棋

有约不来过夜半,闲敲棋子落灯花

导航

实现消息来时让网页标题闪动

Posted on 2009-09-14 20:50  闲坐敲棋  阅读(163)  评论(0编辑  收藏  举报
<script>
var g_blinkswitch = 0;
var g_blinktitle = document.title;
function blinkNewMsg()
{

document.title
= g_blinkswitch % 2==0 ? "【   】 - " + g_blinktitle : "【新消息】 - " + g_blinktitle;
g_blinkswitch
++;

}

setInterval(blinkNewMsg,
1000);
</script>