请指点下,都无法弹出,具体哪出错了?
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
var a=confirm("是否打开新窗口?");
// 新窗打开时弹出确认框,是否打开
if(a==true)
{
var b=prompt("确认网址:", "http://www.imooc.com/");
if(b!=null)
{
window.open('http://www.imooc.com/','_blank','width=400,height=500,menubar=no,toolbar=no');
}
else
{
alert("bye!");
}
}
else
{
alert("bye!");
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>