js使文字闪烁的代码:
var t=false; setInterval("flash_title()",300); function flash_title(){ if(t){ document.title='☆'; t=false; }else{ document.title='★'; t=true; } }
声明:如需转载,请注明来源于www.webym.net并保留原文链接:http://www.webym.net/jiaocheng/849.html
js使文字闪烁的代码:
var t=false; setInterval("flash_title()",300); function flash_title(){ if(t){ document.title='☆'; t=false; }else{ document.title='★'; t=true; } }