为什么执行到4就不动了?
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"/>
</head>
<body>
<!--先编写好网页布局-->
<h3>操作成功</h3>
<p><span id="second">5</span>秒后回到主页<a href="javascript:back()" target="_blank">返回</a></p>
<script type="text/javascript">
var sec=document.getElementById("second").innerHTML;//获取显示秒数的元素,通过定时器来更改秒数。
function time(){
sec--;
document.getElementById("second").innerHTML=sec;
if(sec==0){
location.assign("http://www.imooc.com")
}
}
setTimeout("time()",1000)
//通过window的location和history对象来控制网页的跳转。
function back{
history.back()
}
</script>
</body>
</html>