为甚么window.open不起作用
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<h1>操作成功</h1> <!--先编写好网页布局-->
<span id="time">5</span>
<span>秒后返回首页</span>
<a href="JavaScript:history.back(1)">返回</a>
<script type="text/javascript">
var i=document.getElementById("time").innerHTML;
function count(){
i--;
document.getElementById('time').innerHTML=i
}setInterval(count,1000);
if(i==0){window.open("http://www.imooc.com")}
//获取显示秒数的元素,通过定时器来更改秒数。
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>