DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> javascript使用定時函數實現跳轉到某個頁面
javascript使用定時函數實現跳轉到某個頁面
編輯:JavaScript綜合知識     

定時跳轉到某個頁面,比如跳轉到一個頁面處理完任務,然後又回到原來的頁面,這個用javascript的定時函數很容易實現

有時我們跳轉到一個頁面處理完任務,然後又回到原來的頁面,這個在很多的下載網站可以看到,這樣做也是為了留住用戶。    這個用javascript的定時函數很容易實現。    window.setTimeout( code,time) // code 執行的代碼 time 設置的時間  代碼如下: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  <html xmlns="http://www.w3.org/1999/xhtml">  <head>  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  <title>javascript自動跳轉</title>  <script type="text/javascript">  function redrect()  {  window.location = "1.html";  }  window.setTimeout(redrect,3000);// 跳轉函數  </script>  </head>  <body >  <h4 style="color:#F00">這是跳轉頁面....</h4>  </body>  </html>   
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved