为什么弹出两个腾讯网,如果我把mywin.close();去除,弹出来了是腾讯网和慕课网,这是为什么?
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>close()</title>
<script type="text/javascript">
window.open("http://www.qq.com");
var mywin=window.open("http://www.imooc.com");
mywin.close();
</script>
</head>
<body>
</body>
</html>