[JQuery]模拟开心网消息提示
- 开发笔记
- 2009-03-10
- 48热度
- 0评论
<script type="text/javascript">
$(document).ready(function()
{
setInterval(shine,1000);
}
);
var shine=function()
{
//document.title = new Date().getTime();
document.title = (document.title=='你有新的短消息'?'':'你有新的短消息')
}
</script>