为什么不能在新窗口中打开慕课网
代码如下:
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
操作成功<br>
<br>
<p><span id="tim"></span>
秒后回到主页 <a href="#" onclick="goback()">返回</a>
</p>
<script type="text/javascript">
var num=5;
var i=setInterval("startCount()",1000);
function startCount() {
if(num==0)
{
clearInterval(i);
window.location.assign("https://www.imooc.com");
}
else
{
document.getElementById("tim").innerText=num;
num=num-1;
}
}
function goback(){
window.history.back();
}
//获取显示秒数的元素,通过定时器来更改秒数。
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>
我试了试把assign()换成window.open(),但是换了之后时间卡在1秒不动,也不打开网页,要怎么修改能新窗口打开慕课网,求大佬解答