我的代码为什么else哪里显示错误?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script>
function openWindow()
{var a=confirm("确定打开窗口?");
if(a==true)
{
var nul=prompt("通过输入对话窗口,确定打开网址","http://www.imooc.com");
if(nul!=null)
{
window.open(nul,"_blank",'width=400px,height=500px,menubar=no,toolbar=no');
}
else{alert("打开失败");}
else{alert("打开失败");}
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
我第二个else为什么一直显示错误求大佬帮我回答一下