5秒后跳转到另一个页面的js代码
发布时间:2016-12-30 来源:查字典编辑
摘要:复制代码代码如下:5秒后跳转到另一个页面vart=5;functioncountDown(){vartime=document.getEle...
复制代码 代码如下:
<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"/>
<>
</body>
</html>