代码按要求写的,显示错误,无法关闭网站
我的可以关闭,刚打开就关掉了,如果不能关,换个浏览器试试呢
open的语法格式:
window.open('弹出窗口的url',窗口名称'','窗口特征');
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>close()</title>
<script type="text/javascript">
var mywin=window.open('http://www.imooc.com');
mywin.close();
</script>
</head>
<body>
</body>
</html>