23
2005
10

自动选择最快站点

方案一:

<ht.ml>
<he.ad>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
<meta http-equiv="refresh" content="5;url=./"> //设定检测的时间,每5秒刷新一次
<title>自动选择最快站点</title></head>
<center>
<p>
<br>
<font color=blue size=7><br>
请稍候,正在选择速度最快站点......</p>
<scr.ipt>
i=1
var autourl=new Arr.ay()
aut.ourl[1]="http://www.u6u8.net";;
autour.l[2]="http://bbs.u6u8.net";;
aut.ourl[3]="http://blog.u6u8.net";; //设置三个镜像站点,当然你也可以多加几个只要如上形式即可.
fun.ction auto(url) //设置一个自动转向的函数
{
if(i)
{
i=0;
top.loca.tion=url //设置新页面打开的形式
}}
fun .ction run() //设置一个启动函数
{
for(var i=1;
i<autourl.length;i++) //设置一个循环检测,检测最先打开的站点
document.write("<img src="+autourl+" width=1 height=1 onerror=auto('"+autourl+"')>") //写出具体的链接地址
}
run() //启动函数
</sc.ript>
</body></html>

方案二:
直接将下面代码加入到<body></body>中

<scr.ipt>
i=1

var autourl=new Arr ay()

autourl[1]="www.u6u8.net"

autourl[2]="bbs.u6u8.net"

autourl[3]="blog.u6u8.net"

fun.ction auto(url){if(i){i=0;top.location=url}}

fun.ction run(){for(var i=1;i<autourl.length;i++)document.write("<img src=http://"+autourl+" width=1 height=1 onerror=auto('http://"+autourl+"')>")}

run()
</scr.ipt>


« 上一篇 下一篇 »

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。