大佬帮忙看看为什么没效果
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h1><b>操作成功</b></h1>
<span id="i">5</span>秒回到主页<a href="javascript:myback()">返回</a>
<script type="text/javascript">
//获取显示秒数的元素,通过定时器来更改秒数。
var num=5;
function startCount(){
document.getElementById("count").innerHTML="num";
num--;
setInterval("startCount()",1000);
if(num==0){
location.assign("https://www.imooc.com/")
}
}
//通过window的location和history对象来控制网页的跳转。
startConut();
function myback(){
window.history.back();
}
</script>
</body>
</html>