我加了一个if,为什么没有生效,后面的if就生效了?求指教
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h1>caozuo is ok!</h1>
<p><span id="aa">5</span>秒后返回主页,<a href="javascript:back();">返回</a></p>
<button id = "bt" onclick="count()">start</button>
<script type="text/javascript">
num=document.getElementById("aa").innerHTML
//document.write(num)
function count(){
num--;
document.getElementById("aa").innerHTML=num;
if(num==0){
window.open("www.baidu.com","_blank","width=120 height=44")
}
//这里的代码没有生效,为什么
i=setTimeout("count()",1000)
if(num==0){clearTimeout(i)}
}
//获取显示秒数的元素,通过定时器来更改秒数。
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>