找回密码
 注册
【阿里云】2核2G云新老同享 99元/年,续费同价华为云精选云产品特惠做网站就用糖果主机Jtti,新加坡服务器,美国服务器,香港服务器
查看: 609|回复: 6

谁能给个电信网通自动跳转的代码呀

[复制链接]
发表于 2007 年 3 月 6 日 18:14:01 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?注册

×
求助谁能给个网通电信自动跳转的代码呀
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
发表于 2007 年 3 月 6 日 18:53:09 | 显示全部楼层
【腾讯云】2核2G云服务器新老同享 99元/年,续费同价
帮D
看看jg首页
http://bbs.jgwy.net
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

 楼主| 发表于 2007 年 3 月 6 日 20:39:29 | 显示全部楼层
看不到.跳转速度太快
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

发表于 2007 年 3 月 6 日 20:48:07 | 显示全部楼层
js一:
  1. <script type="text/javascript">
  2. var cookieEnabled=(navigator.cookieEnabled)? true : false
  3. //判断cookie是否开启

  4. //如果浏览器不是ie4+或ns6+
  5. if (typeof navigator.cookieEnabled=="undefined" && !cookieEnabled){
  6. document.cookie="testcookie"
  7. cookieEnabled=(document.cookie=="testcookie")? true : false
  8. document.cookie="" //erase dummy value
  9. }

  10. /*
  11. 检查此IE是否支持cookie

  12. */        
  13. //document.cookie = 'killme' + escape('nothing')
  14. function cc()
  15. {
  16.         if (document.cookie == "")
  17.         {
  18.                 alert("请打开cookie选项");
  19.                 document.getElementById('message').style.display='';
  20.                 document.getElementById('setarea').style.display='none';
  21.                 window.setTimeout("goto();",3000)  
  22.                 document.Form1.cookieexists.value ="false"
  23.         }
  24.         else
  25.         {
  26.                 Get();
  27.         alert("你已经打开了cookie选项!!!!!");
  28.         document.getElementById('setarea').style.display='';               
  29.         }
  30. }


  31. function GetCookie(name)
  32. {
  33.      var arg=name+ "=";
  34.      var alen=arg.length;
  35.      var clen=document.cookie.length;
  36.      var i=0;
  37.      while (i<clen) {
  38.        var j=i+alen;
  39.        if(document.cookie.substring(i,j)
  40.        ==arg)
  41.        return getCookieVal(j);
  42.        i=document.cookie.indexOf("",i)+1;
  43.        if(i==0)break;
  44.      }
  45.      return null;
  46. }

  47. function getCookieVal(offset) {
  48.      var endstr=document.cookie.indexOf
  49.        (";",offset);
  50.      if(endstr==-1) //没有指定其他元素
  51.        endstr=document.cookie.length;
  52.      return unescape(document.cookie.substring
  53.        (offset,endstr));
  54.    }

  55. function Get()
  56. {                        
  57.         if (cookieEnabled)
  58.         {               
  59.                 var CookieArea = GetCookie('zz_area');
  60.                 //var CookieArea = "CNC";
  61.                 if (CookieArea == "CNC")
  62.                 {               
  63.                         document.getElementById('loading').style.display='';                                
  64.                         document.getElementById('setarea').style.display='none';                                
  65.                         this.location = "http://bbs.jgfree.net/index.php";
  66.                 }
  67.                 else
  68.                 {
  69.                         //判断电信线路
  70.                         if (CookieArea == "TEL")
  71.                         {
  72.                                 document.getElementById('loading').style.display='';                                
  73.                                 document.getElementById('setarea').style.display='none';                                
  74.                                 this.location = "http://bbs.jgwy.net/index.php";
  75.                         }
  76.                         //判断移动线路
  77.                         if (CookieArea == "YD")
  78.                         {
  79.                                 document.getElementById('loading').style.display='';                                
  80.                                 document.getElementById('setarea').style.display='none';                                
  81.                                 this.location = "http://www.jgwy.net/bbs/index.php";
  82.                         }                                
  83.                         else
  84.                         {
  85.                                 document.getElementById('setarea').style.display='';
  86.                         }
  87.                 }
  88.         }
  89.         else
  90.         {               
  91.                 this.location = "http://jgwy.net/bbs/index.php";
  92.         }
  93. }
  94. function SetCNC()
  95. {
  96.         var mydate = new Date();
  97.         mydate.setTime(mydate.getTime() + 315360000000);
  98.         document.cookie = "zz_area=CNC;expires="+ mydate.toGMTString() + ";domain=bkbbs.net";
  99.         Get();
  100. }
  101. function SetTEL()
  102. {
  103.         var mydate = new Date();
  104.         mydate.setTime(mydate.getTime() + 315360000000);
  105.         document.cookie = "zz_area=TEL;expires=" + mydate.toGMTString() + ";domain=bkbbs.net";
  106.         Get();
  107. }
  108. function SetYD()
  109. {
  110.         var mydate = new Date();
  111.         mydate.setTime(mydate.getTime() + 315360000000);
  112.         document.cookie = "zz_area=YD;expires=" + mydate.toGMTString() + ";domain=bkbbs.net";
  113.         Get();
  114. }
  115. </script>
复制代码



js二:
  1. <script type="text/javascript">
  2. i=1
  3. var autourl=new Array()
  4. autourl[1]="http://www.jgwy.net/bbs/index.php"
  5. autourl[2]="http://bbs.jgwy.net/index.php"
  6. autourl[3]="http://bbs.jgfree.net/index.php"

  7. function auto(url){
  8. if(i){i=0;top.location=url}
  9. }
  10. function run(){
  11. for(var i=1;i<autourl.length;i++)  
  12. document.write("<img src='"+autourl[i]+"' width=1 height=1 onerror=auto('"+autourl[i]+"')>")
  13. }
  14. run()
  15. </script>
复制代码
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

发表于 2007 年 3 月 6 日 23:44:50 | 显示全部楼层
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <HTML><HEAD><TITLE>金光论坛/金光免费/商业空间(资源)导航</TITLE>
  3. <meta http-equiv='Content-Type' content="text/html; charset=gb2312">
  4. <meta name="robots" content="金光免费/商业空间(资源)导航,网页制作,ASP/CGI/PHP/JSP代码交流,设计美化,服务器技术,绿色软件,金光论坛,Free Web Space,Free Web Hosting">
  5. <META NAME="KEYWORDS" CONTENT="金光免费/商业空间(资源)导航,网页制作,ASP/CGI/PHP/JSP代码交流,设计美化,服务器技术,绿色软件,金光论坛,Free Web Space,Free Web Hosting" />
  6. <META NAME="DESCRIPTION" CONTENT="金光免费空间(资源)导航,商业空间导航,免费空间,网页制作,ASP/CGI/PHP/JSP代码交流,设计美化,服务器技术,源码下载,软件下载,金光论坛" />
  7. <LINK href="favicon.ico" rel="SHORTCUT ICON">
  8. <style type=text/css>body{font-family:宋体}td{font-size:12px}.f14{font-size:14.8px}.ff{font-family:Verdana;font-size:16px}.s{text-decoration:none}.t{color:#0000cc;font-weight:normal;text-decoration:none}a.t:hover{text-decoration:underline}.m{color:#000000;cursor:hand;text-decoration:none}a.m:hover{text-decoration:underline}</style>
  9. <META content="Microsoft FrontPage 4.0" name=GENERATOR>
  10. </HEAD>
  11. <script type="text/javascript">
  12. var cookieEnabled=(navigator.cookieEnabled)? true : false
  13. //判断cookie是否开启

  14. //如果浏览器不是ie4+或ns6+
  15. if (typeof navigator.cookieEnabled=="undefined" && !cookieEnabled){
  16. document.cookie="testcookie"
  17. cookieEnabled=(document.cookie=="testcookie")? true : false
  18. document.cookie="" //erase dummy value
  19. }

  20. /*
  21. 检查此IE是否支持cookie

  22. */        
  23. //document.cookie = 'killme' + escape('nothing')
  24. function cc()
  25. {
  26.         if (document.cookie == "")
  27.         {
  28.                 alert("请打开cookie选项");
  29.                 document.getElementById('message').style.display='';
  30.                 document.getElementById('setarea').style.display='none';
  31.                 window.setTimeout("goto();",3000)  
  32.                 document.Form1.cookieexists.value ="false"
  33.         }
  34.         else
  35.         {
  36.                 Get();
  37.         alert("你已经打开了cookie选项!!!!!");
  38.         document.getElementById('setarea').style.display='';               
  39.         }
  40. }


  41. function GetCookie(name)
  42. {
  43.      var arg=name+ "=";
  44.      var alen=arg.length;
  45.      var clen=document.cookie.length;
  46.      var i=0;
  47.      while (i<clen) {
  48.        var j=i+alen;
  49.        if(document.cookie.substring(i,j)
  50.        ==arg)
  51.        return getCookieVal(j);
  52.        i=document.cookie.indexOf("",i)+1;
  53.        if(i==0)break;
  54.      }
  55.      return null;
  56. }

  57. function getCookieVal(offset) {
  58.      var endstr=document.cookie.indexOf
  59.        (";",offset);
  60.      if(endstr==-1) //没有指定其他元素
  61.        endstr=document.cookie.length;
  62.      return unescape(document.cookie.substring
  63.        (offset,endstr));
  64.    }

  65. function Get()
  66. {                        
  67.         if (cookieEnabled)
  68.         {               
  69.                 var CookieArea = GetCookie('zz_area');
  70.                 //var CookieArea = "CNC";
  71.                 if (CookieArea == "CNC")
  72.                 {               
  73.                         document.getElementById('loading').style.display='';                                
  74.                         document.getElementById('setarea').style.display='none';                                
  75.                         this.location = "http://bbs.jgfree.net/index.php";
  76.                 }
  77.                 else
  78.                 {
  79.                         //判断电信线路
  80.                         if (CookieArea == "TEL")
  81.                         {
  82.                                 document.getElementById('loading').style.display='';                                
  83.                                 document.getElementById('setarea').style.display='none';                                
  84.                                 this.location = "http://bbs.jgwy.net/index.php";
  85.                         }
  86.                         //判断移动线路
  87.                         if (CookieArea == "YD")
  88.                         {
  89.                                 document.getElementById('loading').style.display='';                                
  90.                                 document.getElementById('setarea').style.display='none';                                
  91.                                 this.location = "http://www.jgwy.net/bbs/index.php";
  92.                         }                                
  93.                         else
  94.                         {
  95.                                 document.getElementById('setarea').style.display='';
  96.                         }
  97.                 }
  98.         }
  99.         else
  100.         {               
  101.                 this.location = "http://jgwy.net/bbs/index.php";
  102.         }
  103. }
  104. function SetCNC()
  105. {
  106.         var mydate = new Date();
  107.         mydate.setTime(mydate.getTime() + 315360000000);
  108.         document.cookie = "zz_area=CNC;expires="+ mydate.toGMTString() + ";domain=bkbbs.net";
  109.         Get();
  110. }
  111. function SetTEL()
  112. {
  113.         var mydate = new Date();
  114.         mydate.setTime(mydate.getTime() + 315360000000);
  115.         document.cookie = "zz_area=TEL;expires=" + mydate.toGMTString() + ";domain=bkbbs.net";
  116.         Get();
  117. }
  118. function SetYD()
  119. {
  120.         var mydate = new Date();
  121.         mydate.setTime(mydate.getTime() + 315360000000);
  122.         document.cookie = "zz_area=YD;expires=" + mydate.toGMTString() + ";domain=bkbbs.net";
  123.         Get();
  124. }
  125. </script>

  126. <BODY text=#000000 vLink=#0000cc aLink=#ff6600 link=#0000cc bgColor=#ffffff>
  127. <CENTER><IMG height=110 src="images/slogo.gif" width=286 border=0><BR><IMG height=23 width=1><BR>
  128. <TABLE cellSpacing=0 cellPadding=0 width=600 bgColor=#eeeeee border=0>
  129. <TBODY><TR><TD width=56 height=18>&nbsp; ;</TD>
  130. <TD class=m onmouseover="this.bgColor='#ffffff';"
  131. onclick="g('http://bbs.jgfree.net')" onmouseout="this.bgColor='#eeeeee';"
  132. vAlign=bottom align=middle width=67><A class=t
  133. href="http://bbs.jgfree.net" target="_blank">论 坛</A></TD>  
  134. <TD class=s vAlign=bottom align=middle width=67 bgColor=#0033cc><FONT
  135. color=#ffffff><B>首 页</B></FONT></TD>
  136. <TD class=m onmouseover="this.bgColor='#ffffff';"
  137. onclick="g('http://www.jgfree.net')" onmouseout="this.bgColor='#eeeeee';"
  138. vAlign=bottom align=middle width=67><A class=t
  139. href="http://www.jgfree.net/" target="_blank">免费站</A></TD>
  140. <TD class=m onmouseover="this.bgColor='#ffffff';"
  141. onclick="g('http://www.paidhost.net')" onmouseout="this.bgColor='#eeeeee';"
  142. vAlign=bottom align=middle width=67><A class=t
  143. href="http://www.paidhost.net/" target="_blank">商业站</A></TD>
  144. <TD class=m onmouseover="this.bgColor='#ffffff';"
  145. onclick="g('http://www.jgidc.com')" onmouseout="this.bgColor='#eeeeee';"
  146. vAlign=bottom align=middle width=67><A class=t
  147. href="http://www.jgidc.com/" target="_blank">国际站</A></TD>
  148. <TD class=m onmouseover="this.bgColor='#ffffff';"
  149. onclick="g('http://nbgh.cn')" onmouseout="this.bgColor='#eeeeee';"
  150. vAlign=bottom align=middle width=67><A class=t
  151. href="http://nbgh.cn" target="_blank">游戏站</A></TD>
  152. <TD width=57>&nbsp; ;</TD></TR>
  153. <TR><TD bgColor=#0033cc height=1></TD>
  154. <TD bgColor=#0033cc colSpan=7></TD>
  155. <TD bgColor=#0033cc></TD></TR></TBODY></TABLE>
  156. <TABLE cellSpacing=0 cellPadding=0 width=600 border=0>
  157. <TBODY><TR><TD colSpan=5 height=18></TD></TR>
  158. <TR><TD colSpan=5 height=26>&nbsp; ;</TD></TR></TBODY></TABLE>
  159. <table width="450" border="0" align="center" cellpadding="0" cellspacing="0">
  160.           <tr>

  161.                     <td width="1"></td>
  162.                     <td>
  163. <div id="message"  align="center" style="display:none">
  164.         由于你的浏览器没有开启COOKIE功能(建议打开),系统将在3秒钟后,自动引导到金光网络主服务器...
  165. </div>
  166. <div id="loading" align="center" style="display:none">
  167. <br />
  168.         正在装载,请稍候...
  169. </div>        
  170. <div id="setarea"  align="center" style="display:none">
  171.         <br />
  172.         请您选择最快的站点,此选项将不会再次出现<br /> <br />

  173.         如您希望重新选择,请清除浏览器COOKIE<br /><br />
  174.           <br />
  175.         <input type="button" value="中国移动" onClick="SetYD()">
  176.         <input type="button" value="北方网通" onClick="SetCNC()">
  177.         <input type="button" value="南方电信" onClick="SetTEL();">
  178.         <input type="button" value="自动判断" onClick="javascript:window.location='auto.html'">
  179. </div>

  180. <br />
  181. </td>
  182. <td width="1"></td>
  183. </tr>
  184. </table>
  185. </body>
  186. </html>
  187. <HTML><HEAD><TITLE>金光论坛/金光免费/商业空间(资源)导航</TITLE>
  188. <meta http-equiv='Content-Type' content="text/html; charset=gb2312">
  189. <meta name="robots" content="金光免费/商业空间(资源)导航,网页制作,ASP/CGI/PHP/JSP代码交流,设计美化,服务器技术,绿色软件,金光论坛,Free Web Space,Free Web Hosting">
  190. <META NAME="KEYWORDS" CONTENT="金光免费/商业空间(资源)导航,网页制作,ASP/CGI/PHP/JSP代码交流,设计美化,服务器技术,绿色软件,金光论坛,Free Web Space,Free Web Hosting" />
  191. <META NAME="DESCRIPTION" CONTENT="金光免费空间(资源)导航,商业空间导航,免费空间,网页制作,ASP/CGI/PHP/JSP代码交流,设计美化,服务器技术,源码下载,软件下载,金光论坛" />
  192. <LINK href="favicon.ico" rel="SHORTCUT ICON">
  193. <style type=text/css>body{font-family:宋体}td{font-size:12px}.f14{font-size:14.8px}.ff{font-family:Verdana;font-size:16px}.s{text-decoration:none}.t{color:#0000cc;font-weight:normal;text-decoration:none}a.t:hover{text-decoration:underline}.m{color:#000000;cursor:hand;text-decoration:none}a.m:hover{text-decoration:underline}</style>
  194. <META content="Microsoft FrontPage 4.0" name=GENERATOR>
  195. </head>
  196. <body>
  197. <div>
  198. <p>尊敬的朋友,您好!系统正在自动选择最快的网络访问金光论坛</p>

  199. <p>速度测试中,请稍候……</p>

  200. <script type="text/javascript">
  201.     i=1
  202.     var autourl=new Array()
  203.     autourl[1]="http://www.jgwy.net/bbs/index.php"
  204.     autourl[2]="http://bbs.jgwy.net/index.php"
  205.     autourl[3]="http://bbs.jgfree.net/index.php"
  206.         
  207.     function auto(url){
  208.     if(i){i=0;top.location=url}
  209.     }
  210.     function run(){
  211.     for(var i=1;i<autourl.length;i++)  
  212.      document.write("<img src='"+autourl[i]+"' width=1 height=1 onerror=auto('"+autourl[i]+"')>")
  213.     }
  214.     run()
  215. </script>

  216. <p><TABLE cellSpacing=0 cellPadding=0 width=600 border=0>
  217. <TBODY><TR vAlign=top align=middle>
  218. <TD class=t colSpan=3 height=30><A href="map.htm">金光大全</A></TD></TR>
  219. <TR><TD></TD>
  220. <TD class=t align=middle height=13><A href="http://www.jgwy.net/">
  221. <SPAN style="CURSOR: hand" onclick="window.external.AddFavorite('http://www.jgwy.net/', '金光网')">加入收藏</SPAN></A> | <A onclick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.jgwy.net/');" href="#">设为首页</A> | <A href="mailto:deyima@nbip.net">联系我们</A> | <A href="http://www.jgwy.net/support.htm" target="_blank">广告投放</A></TD>
  222. <TD></TD></TR></TBODY></TABLE>
  223. <TABLE cellSpacing=0 cellPadding=0 width=600 border=0><TBODY><TR>
  224. <TD class=m align=middle height=30><FONT color=#7777cc>JgWy</FONT> <FONT
  225. color=#7777cc>&copy;2001-2007</FONT>&nbsp; ;<a href="http://www.Jgwy.net/" target="_blank"><FONT
  226. color=#7777cc>Jgwy.net</FONT></a> | <a href="http://www.Jgfree.net/" target="_blank"><FONT
  227. color=#7777cc>Jgfree.net</FONT></a> | <a href="http://www.paidhost.net/" target="_blank"><FONT
  228. color=#7777cc>Paidhost.net</FONT></a> | <a href="http://www.jgidc.com/" target="_blank"><FONT
  229. color=#7777cc>JgIdc.Com</FONT></a>&nbsp; ;</TD></TR>
  230. <tr><TD class=m align=middle height=30>
  231. <a href="http://www.miibeian.gov.cn/" target="_blank"><FONT
  232. color=#7777cc>浙ICP备05036471号</FONT></a></td></tr>
  233. </TBODY></TABLE>
  234. <p><script language="javascript" type="text/javascript" src="http://js.users.51.la/50533.js"></script>
  235. </CENTER>
  236. </div>
  237. </body>
  238. </html>
复制代码
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

发表于 2007 年 3 月 6 日 23:59:19 | 显示全部楼层
【这个要简单些,是通过加载速度来判断最快的镜像】

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" lang="zh-CN">
  3. <head>
  4. <title>jump</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <meta http-equiv="refresh" content="30; url=*.htm" />

  7. <script language=JavaScript>
  8. var i = 1;<!--
  9. if (top.location != location) top.location.href = location.href;
  10. self.moveTo(0,0);
  11. self.resizeTo(screen.availWidth,screen.availHeight);
  12. // -->
  13. </script>

  14. </head>

  15. <body>

  16. <noscript><iframe src=*.htm></iframe></noscript>

  17. <script language="javascript">
  18. if (top.location != location)
  19. top.location.href = self.location;
  20. </script>

  21. <div>
  22. <p>正在选择速度最快镜像...</p>
  23. <p>长时间没有响应请选择以下入口点击进入</p>
  24. <ul>
  25. <li><a href="http://bbs.jgfree.net/index.php">网通</a></li>
  26. <li><a href="http://bbs.jgwy.net/index.php">电信</a></p></li>
  27. </ul>
  28. </div>

  29. <script>
  30. i=1
  31. var autourl=new Array()
  32. autourl[1]="http://bbs.jgfree.net/index.php"
  33. autourl[2]="http://www.jgwy.net/bbs/index.php"
  34. function auto(url){if(i){i=0;top.location=url}}
  35. function run(){for(var i=1;i<autourl.length;i++)document.write("<img src="+autourl[i]+" width=1 height=1 onerror=auto('"+autourl[i]+"') />")}
  36. run()
  37. </script>

  38. </body>
  39. </html>
复制代码
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

发表于 2007 年 3 月 7 日 00:02:51 | 显示全部楼层
【腾讯云】2核2G云服务器新老同享 99元/年,续费同价
哇~~~~~
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

Archiver|手机版|小黑屋|金光论坛

GMT+8, 2024 年 11 月 19 日 04:19 , Processed in 0.024415 second(s), 24 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表