浏览器显示动态标签,如下图:

代码如下,把代码复制到你的网页底部即可。
<script language="JavaScript">
step=0
function flash_title()
{
step++
if (step==3) {step=1}
if (step==1) {document.title='您有新短消息 www.5devip.com'}
if (step==2) {document.title='请留意查收 !百度一下:雅爱社区'}
setTimeout("flash_title()",800);
}
flash_title()
</script>