[javascript]各種頁面定時跳轉(倒計時跳轉)代碼總結

來源:互聯網
上載者:User

標籤:strong   函數   跳轉   ==   代碼   rip   val   登陸   get   

(1)使用setTimeout函數實現定時跳轉(如下代碼要寫在body地區內)

 

1 <script type="text/javascript">2 //3秒鐘之後跳轉到指定的頁面3 setTimeout(window.location.href=‘http://www.baidu.com‘,3);4 </script> 

 

(2)html代碼實現,在頁面的head地區塊內加上如下代碼

 

1 <!--5秒鐘後跳轉到指定的頁面-->2 <meta http-equiv="refresh" content="5;url=http://www.baidu.com" /> 

 

(3)稍微複雜點,多見於登陸之後的定時跳轉

 1 <!doctype html> 2 <head> 3 <meta charset=utf-8" /> 4 <title>js定時跳轉頁面的方法</title> 5 </head> 6 <body> 7 <script> 8 var t=10;//設定跳轉的時間 9 setInterval("refer()",1000); //啟動1秒定時10 function refer(){11 if(t==0){12 location="http://www.baidu.com"; //#設定跳轉的連結地址13 }14 document.getElementById(‘show‘).innerHTML=""+t+"秒後跳轉到百度"; // 顯示倒計時15 t--; // 計數器遞減16 //本文轉自:17 }18 </script>19 <span id="show"></span>20 </body>21 </html> 

 

[javascript]各種頁面定時跳轉(倒計時跳轉)代碼總結

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.