我如果想在打开新窗口后显示要不要关闭怎么操作,我这样写的代码感觉弹出来还是在初始页面上
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>close()</title>
<script type="text/javascript">
function yemian(){
var mywin=window.open("http://www.imooc.com");
var mypage=confirm("是否关闭新页面",true);
if (mypage==true){
mywin.close();
alert("已关闭页面!");
}
else
{
alert("未关闭页面!");
}
}
</script>
</head>
<body>
<input name="yemian" type="button" value="请点击打开新页面" onclick="yemian()">
</body>
</html>