看了好久始终没看出自己哪里错了。。。求指点
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h2>操作成功</h2>
<span id="numb">5</span><tiv>后回到主页</tiv><a href="javascript:history.back();">返回</a>
<script type="text/javascript">
function count(){
var num = document.getElementById("numb").innerHTML;
num--;
if(num==0){window.location.assign("http://www.imooc.com/");}
else{setTimeout("count()",1000) }
} //获取显示秒数的元素,通过定时器来更改秒数。
function back(){window.history.back()
}
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>
这个秒表不会跳,点返回也没反应