为什么显示秒的那个数字由5减到-9后,又变回-1,而且减的速度变慢了?
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<form>
<p style="font-size:30px;font-weight:bold">
操作成功
</p>
<input type="text" id="seconds" style="width:11px;border:0px">
<span>秒后回到主页</span>
<a href="javascript:back()">返回</a>
</form>
<script type="text/javascript">
var btime=5;
function home(){
document.getElementById("seconds").value=btime;
btime--;
}
setInterval(home,1000)
//获取显示秒数的元素,通过定时器来更改秒数。
//通过window的location和history对象来控制网页的跳转。
function back(){
history.back();
}
</script>
</body>
</html>