求帮忙看下哪里错了呀,谢谢大家
<!--先编写好网页布局-->
<h><strong>操作成功</strong></h>
<p><span id="txt">5</span>秒后回到主页<a href="javascript:back()">返回</a></p>
<script type="text/javascript">
var num=document.getElementById("txt").innerHTML;
//获取显示秒数的元素,通过定时器来更改秒数。
function count(){
if(num>0){
document.getElementById("txt").innerHTML=num;
num--;
}
else
{
window.location.assign("http://www.imooc.com");
}
}
function back{
window.history.back();
}
setInterval(count,1000);
//通过window的location和history对象来控制网页的跳转。