请问这段代码哪里有问题呢?谢谢啦
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
</head>
<body>
<p>
<h3>操作成功</h3>
</p>
<p><b id="clock">5</b>秒后回到主页<a herf="javascript:goBack();"> 返回</a></p>
<script type="text/javascript">
var num=5;
function clock(){
num--;
var num=document.getElementById("clock").innerHTML;
if(num==1){
window.location.herf="http://www.imooc.com/" ;
}
}
setInterval("clock()",1000);
function goBack(){
window.history.back();
}
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>