首页 > 代码库 > 用js在网页上完成倒计时3秒后自动跳转到另一个页面

用js在网页上完成倒计时3秒后自动跳转到另一个页面

<body> 

<div id="time"></div>

<a href="http://www.mamicode.com/#" onclick="stop()">停止</a>

<script type="text/javascript">  

    var i=3;  

    function changeTime(){

   document.getElementById("time").innerHTML=i;   

   i--;   

   }

  changeTime();  

var inId=window.setInterval("changeTime()",1000);

  function stop(){

   window.clearInterval(inId);  

}  

  function autoRedirect(){   

window.location="j.html";  

}  

window.setInterval("autoRedirect()",3000);

</script>

</body>