核心代码: 复制代码 代码如下: <BR>// <BR>var step=0; <BR>var _title=document.title; //获取网页标题 <BR>var space=''; <BR>for(var i=0;i<=_title.length;i++)space+=' '; //根据标题长度生产相应的空字符 <BR>function flash_title() //核心函数 <BR>{ <BR>step++ <BR>if (step==3) {step=1} <BR>if (step==1) {document.title=space} <BR>if (step==2) {document.title=_title} <BR>setTimeout("flash_title()",500); <BR>} <BR>flash_title(); <BR> 演示代码: