数值不会变,求解啊。
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb" />
</head>
<body>
<h1>操作成功</h1>
<span id="a">5</span>
<span>秒后回到主页</span>
<a href="window.history.back();">返回</a>
<!--先编写好网页布局-->
<script type="text/javascript">
var i=6;
function dec(){
i=i-1;
if(i==1){
location.assign("http://imooc.com/");
return;
}
document.getElementById('a').value.innerHTML=i;
}
setInterval(dec,1000);
//获取显示秒数的元素,通过定时器来更改秒数。
//document.write(i);
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>