zoukankan      html  css  js  c++  java
  • 网站页面跳转代码大全,网站网页跳转代码

    有如下多种方法,你自己挑一个喜欢的:
    1、

    <meta http-equiv="refresh" content="秒; url=http://www.tao36524.com">

    2、

    <script language="JavaScript">
    <!--
    var userAgent = navigator.userAgent;
    var MSIEIndex = userAgent.indexOf("MSIE");
    if (userAgent.indexOf("Win") != -1 &&
    userAgent.indexOf("MSIE") != -1 &&
    userAgent.substring((MSIEIndex + 5),(MSIEIndex + 8)) >= 5.5)
    window.location.replace(http://www.jd265.com);
    //-->
    </script>

    没时间转移

    3、

    有些人想访问网站时,直接进入某个子目录中的文件,如cgi-bin/leoboard.cgi,这时,你只要写一个默认的首页文件如index.htm,内容如下,就可以实现你的要求.
    方法一:

    <html>
    <head>
    <title>网页跳转</title>
    <meta http-equiv="refresh" content="0;url=cgi-bin/leoboard.cgi">
    </head>
    <body>
    </body>
    </html>


    方法二
    <html>
    <head>
    <title>正在进入>>> Loading>>> </title>
    </head>
    <body bgcolor="#FFFFFF" text="#000000">
    <p> </p><tr> <td width=724>
    <p align=center><font color="red" size="2">正在进入,请等待,谢谢......</font></p></td></tr><tr>
    <td width="724">
    <p align=center>
    <form name=loading>
    <div align=center>
    <p>
    <input type=text name=chart size=46 style="font-family:Arial; font-weight:bolder; color:rgb(124,119,119); background-color:white; padding:0px; border-style:none;">
    <br> <input type=text name=percent size=46 style="color:rgb(138,134,134); text-align:center; border-medium; border-style:none;"><script>var bar = 0
    var line = "||"
    var amount ="||"
    count()
    function count(){
    bar= bar+2
    amount =amount + line
    document.loading.chart.value=amount
    document.loading.percent.value=bar+"%"
    if (bar<99)
    {setTimeout("count()",10);}
    else
    {window.location = http://f2144.asktang.com;}
    }</script>

    </body>
    </html>

  • 相关阅读:
    Fedora安装ati显卡驱动
    [转]SQLite 3入门教程
    [转]QT:不规则窗口的实现
    Ubuntu 10.10可用源
    [转]Qtopia2.2.0移植
    [转]嵌入式Qtopia2.2.0开发环境的搭建和使用
    ES6 find 和 filter 的区别
    “/ArcGIS/rest”应用程序中的服务器错误——解决办法
    Java:String和Date、Timestamp之间的转换
    UVA 100 The 3n+1 Problem
  • 原文地址:https://www.cnblogs.com/hfzsjz/p/1887248.html
Copyright © 2011-2022 走看看