参数.close问题,为什么关闭不了页面呢
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>close()</title>
<script type="text/javascript">
function ass(){
var mywin= window.open("http://www.baidu.com");
var pages = confirm("是否关闭页面?");
if(pages == true){
mywin.close();
alert("成功关闭");
}else{
alert("没有关闭");
}
}
</script>
</head>
<body>
<input type="button" value="点我下试试" onclick="ass()" />
</body>
</html>
为什么点确认键,新打开的页面还是无法关闭呢