为什么我的计时器就使用了一次,不应该是1000,就执行一次吗
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<p>操作成功</p>
<p><span id = "sp">5</span>秒后回到主页</p>
<a href="">返回</a>
<script type="text/javascript">
var i = document.getElementById("sp").innerHTML;
function time(){
for(i;i>=0;i--){
i--;
document.getElementById("sp").innerHTML = i;
if(i==0){
window.open("https://www.imooc.com");
}
}
}
setInterval(time(),1000);
//获取显示秒数的元素,通过定时器来更改秒数。
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>