zoukankan      html  css  js  c++  java
  • 纯html的重定向。

    纯html网页重定向与跳转

    javaScript 跳转

    方法一:

    <script language="javascript">
        window.location = "http://www.baidu.com";
    </script>

    方法二:

    <script language="javascript">
        document.location = "http://www.baidu.com";

    </script>

    (带进度条)

    <html>
    <head>
    <meta http-equiv="Content-Language" content="zh-cn">
    <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
    <title>跳转到baidu.com</title>
    </head>
    <body>
    <form name=loading>
    <P align=center><FONT face=Arial color=#0066ff size=2>loading...</FONT>
    <INPUT style="PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-WEIGHT: bolder; 

    PADDING-BOTTOM: 0px; COLOR: #0066ff; BORDER-TOP-style: none; PADDING-TOP: 0px;

     FONT-FAMILY: Arial; BORDER-RIGHT-style: none; BORDER-LEFT-style: none;

     BACKGROUND-COLOR: white; BORDER-BOTTOM-style: none"
    size=46 name=chart>
    <BR>
    <INPUT style="BORDER-RIGHT: medium none; BORDER-TOP: medium none;

     BORDER-LEFT: medium none; COLOR: #0066ff; BORDER-BOTTOM: medium none;

     TEXT-ALIGN: center" size=47 name=percent>
    <script language="javascript">
    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()",100);
        }else{
            window.location = "http://www.baidu.com/";
        }
    }
    </script>
    </P>
    </form>
    </body>
    </html>

    纯html页面跳转

    <head>
    <meta http-equiv="refresh" content="10; url=http://www.baidu.com">
    </head>

  • 相关阅读:
    Vue目录查询
    Vue框架学习(五)
    Vue框架学习(四)
    Vue框架学习(三)
    Vue框架学习(二)
    Vue框架学习(一)
    python中定义函数和参数的传递问题
    数据处理
    关于在程序中 文件新生成 在用os.system()程序对新生成的文件处理 举个栗子 如下:
    c++2008 并行配置文件和获取字典的所有key的方法
  • 原文地址:https://www.cnblogs.com/SamllBaby/p/3472635.html
Copyright © 2011-2022 走看看