我的代码里的 关闭新打开窗口 怎么实现?
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openWindow(){
// 新窗口打开时弹出确认框,是否打开
var newWin = confirm("你要打开新的网页窗口吗?");
if(newWin == true){
op();
}else{
alert("好的再见!");
};
}
function op(){
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
var purl = "http://www.imooc.com";
var input = prompt("请输入网址打开新窗口",purl);
var x=0;
var y=0;
if(input != null){//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏
var win = open(purl,"_blank","top=y,left=x,width=400,height=500,menubar=no,toolbar=no");
};
}
function closeWin(){
win.close();
}
</script>
</head>
<body>
<form>
<input type="button" value="请单击我打开新的窗口!" onclick="openWindow()" />
<input type="button" value="关闭新打开的窗口" onclick="closeWin()" />
</form>
</body>
</html>