js 8-17练习(网页跳转和返回)
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h3>操作成功</h3>
<p><span id="wholeTime">5</span>秒后回到主页 <a href="javascript:void(0)" onclick="back()">返回</a></p>
<script type="text/javascript">
//获取显示秒数的元素,通过定时器来更改秒数。
var time =new Date();
var t=document.getElementById("wholeTime").innerHTML;
function daojishi()
{
if(t>0)
{
t--;
document.getElementById("wholeTime").innerHTML=t;
}
else
window.open("http://www.imooc.com/");
}
var a=window.setInterval(daojishi,1000);
//通过window的location和history对象来控制网页的跳转。
function back()
{
window.history.back();
}
</script>
</body>
</html>
这样写为什么会不停的打开网页啊?求大神指导