DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> 5秒後跳轉到另一個頁面的js代碼
5秒後跳轉到另一個頁面的js代碼
編輯:關於JavaScript     
復制代碼 代碼如下:
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>5秒後跳轉到另一個頁面</title>

<script type="text/javascript">
var t = 5;
function countDown(){
var time = document.getElementById("time");
t--;
time.value=t;
if (t<=0) {
location.href="http://www.baidu.com";
clearInterval(inter);
};
}
var inter = setInterval("countDown()",1000);
//window.onload=countDown;
</script>

</head>
<body onload="countDown()">

<input type="text" readonly="true" value="5" id="time"/>

<!--也可以在這裡寫javascript代碼,這樣就不必在body標簽中寫onload="countDown()"。-->
</body>
</html>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved