这样为什么会弹出两次确认窗口啊?
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
var xql=confirm("是否打开窗口");
// 新窗口打开时弹出确认框,是否打开
if(xql==true)
{
window.open('http://www.imooc.com','_blank','width=400,height=500,menubar=no,toolbar=no');
}
else
{
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>