想要弹窗选择打开或关闭网页
想要用confirm弹窗选择打开或者关闭网页,帮我看下下面的代码哪里有问题,点击按钮没有弹窗。
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>close()</title>
<script type="text/javascript">
function xuanze()
{
var mywin=confirm("你想要打开这个网页么?");
if(mywin==true)
{window.open("http://www.imooc.com");}
else
{window.close("http://www.imooc.com");}
}
</script>
</head>
<body>
<form>
<input name="dakai" type="button" onClick="xuanze" value="点击打开弹窗" >
</form>
</body>
</html>