javascript的頁面跳轉代碼

來源:互聯網
上載者:User

javascript的頁面跳轉代碼

方法一(動畫效果):
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>Loading</title>
</head>

<body>

<form name="loading">

<p align="center">正在跳轉,請稍後...</p>

<p align="center">
<input type="text" name="bar" style="border-style:none; background-color:#D3E8D0; font-weight:bold" />
<input type="text" name="percentage"style="border-style:none; background-color:#FFFFFF; max-width:30px"/>
</p>

<p align="center">
如果您的瀏覽器不支援跳轉,請點擊<a href="http://www.126.com">這裡</a>手動跳轉
</p>

<script language="javascript" type="text/javascript">  
var percent=0;          //百分比進度,顯示在捲軸後面
var element="||";      //捲軸單元豎線
var elements="||";    //捲軸當前豎線
count();                //開始調用迴圈

function count(){  
    percent=percent+10;    //每次百分比加10
    elements =elements + element;  //捲軸當前豎線增加一個捲軸單元豎線
    document.loading.bar.value=elements;  //設定表單loading表單中bar元素的當前值
    document.loading.percentage.value=percent+"%";  //設定表單loading表單中percentage元素的當前值
    if (percent<99){                    //percent小於99則繼續迴圈
        setTimeout("count()",500);        //每500ms進行一次count()
    }  
    else{
        window.location = "http://www.126.com";    //percent達到100時跳轉
    }  
}
</script>
 
</form>
</body>
</html>

方法二:
<html>
<head>
<meta http-equiv="refresh" content="3; url=http://www.126.com">
</head>
<a href="http://www.126.com">如果您的瀏覽器沒有自動跳轉,請點擊這裡<a/>
</html>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.