最近在看一下打开网页加载另个的网页,用js window.open要被拦截,但是很多游戏网页却没有被拦截,于是乎到处开游戏网页,分析源码,这里收集了一些平时可能用到的js源码, 让你的网页标题闪动起来
[php]
//标题闪动
var step=0;
var _title=document.title;
var space='';
for(var i=0;i<=_title.length;i++)space+=' ';
function noreg_cancel(){}
function flash_title() {
step++
if (step==3) {
step=1
}
if (step==1) {
document.title=space
}
if (step==2) {
document.title=_title
}
setTimeout("flash_title()",1000);...