为什么i--后直接变为0?
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h1>操作成功</h1>
<p><span id="span"></span>秒后回到主页<a onclick="B_back()">返回</a></p>
<script type="text/javascript">
//获取显示秒数的元素,通过定时器来更改秒数。
// setTimeout(B_back,5000);
// function B_back(){
// history.back();
// }
//让秒数从5递减到0
i=5;
document.getElementById("span").innerHTML=i;
function changeSecond(){
i--;
document.getElementById("span").innerHTML=i;
}
for(a=0;a<5;a++){
setTimeout(changeSecond,2000);
}
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>
原先设想是让秒数从5逐渐递减到0,但是实际运行时,秒数经过2000毫秒后立马从5变为0