1. 论坛系统升级为Xenforo,欢迎大家测试!
    排除公告

自动选择最快的镜像服务器访问本站

本帖由 小叶2006-04-23 发布。版面名称:主机讨论

  1. 小叶

    小叶 New Member

    注册:
    2005-09-04
    帖子:
    17,941
    赞:
    33
    PHP:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <
    head>
    <
    meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <
    title>中国站长资讯网论坛</title>
    <
    style type="text/css">
    <!--
    body {
        
    margin0;
        
    padding0;
        
    font-size14px;
        
    color#333;
        
    text-aligncenter;
    }
    #wrap {
        
    margin:50px auto;
        
    background#FFF;
    }

    #wrap p{
        
    margin:40px 0;
    }

    a:link {
        
    color#63b900;
        
    text-decorationnone;
        
    border-bottom1px dashed;
    }

    a:visited {
        
    color#7fc937;
        
    text-decorationnone;
        
    border-bottom1px dashed;
    }

    a:hover {
        
    color#cc6600;
    }

    a:active {
        
    color#4f711f;
    }

    -->
    </
    style></head>
    <
    body>
    <
    div id="wrap">
    <
    p>尊敬的朋友,您好!正在为您自动选择最快的镜像服务器访问本站</p>

    <
    p>速度测试中……</p>

    <
    script type="text/javascript">
        
    i=1
        
    var autourl=new Array()
        
    autourl[1]="http://bbs.chinahtml.com/index.php"
        
    autourl[2]="http://bbs2.chinahtml.com/index.php"
        
    function auto(url){
        if(
    i){i=0;top.location=url}
        }
        function 
    run(){
        for(var 
    i=1;i<autourl.length;i++) 
         
    document.write("<img src='"+autourl[i]+"' width=1 height=1 onerror=auto('"+autourl[i]+"')>")
        }
        
    run()
    </
    script>

    <
    p>选择最快的镜像站点访问:</p>
    <
    p><a href="http://bbs.chinahtml.com/index.php">■电信主站</a> | <a href="http://bbs2.chinahtml.com/index.php">■网通主站</a></p>

    </
    div>
    </
    body>
    </
    html>
     
  2. Kevin

    Kevin New Member

    注册:
    2005-10-23
    帖子:
    12,728
    赞:
    55
    收藏!
     
  3. wm_chief

    wm_chief New Member

    注册:
    2005-09-05
    帖子:
    17,890
    赞:
    46
    我早就看了
     
  4. lonely

    lonely New Member

    注册:
    2005-12-08
    帖子:
    685
    赞:
    11
    <script type="text/javascript">
    i=1
    var autourl=new Array()
    autourl[1]="http://bbs.chinahtml.com/index.php"
    autourl[2]="http://bbs2.chinahtml.com/index.php"
    function auto(url){
    if(i){i=0;top.location=url}
    }
    function run(){
    for(var i=1;i<autourl.length;i++)
    document.write("<img src='"+autourl+"' width=1 height=1 onerror=auto('"+autourl+"')>")
    }
    run()
    </script>


    能不能,把这几句讲下,我以前以为是判断IP段呢?
     
  5. muyufan

    muyufan New Member

    注册:
    2006-01-09
    帖子:
    91
    赞:
    1
    script语句是不是说

    用document.write把2个图片语句写出来

    然后浏览器开始读取图片 谁先判断出载入图片错误 谁就先调转


    偶有一个疑问就是为什么再autourl里要把i设为0呢?
    有什么作用
     
  6. 小叶

    小叶 New Member

    注册:
    2005-09-04
    帖子:
    17,941
    赞:
    33
    数组初始化?