数字为0时,方法里的clearTimeout不能让计数器停下来,而用点击按钮调用clearTimeout就能停下来。
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<span id="second" >5</span>
<span >秒后回到主页</span>
<a href="javascript:history.back();">返回</a>
<input type="button" value="停" onclick="stop()"/>
<script type="text/javascript">
var i=5;
var int;
//获取显示秒数的元素,通过定时器来更改秒数。
function count(){
i--;
document.getElementById("second").innerHTML=i;
if(i==0){
clearTimeout(int);
window.location.assign("http://www.imooc.com/");
}
int=setTimeout("count()",1000);
}
setTimeout("count()",1000);
function stop(){
clearTimeout(int);
}
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>