麻烦各位帮忙看一下,为什么这一组代码无法运行
function newopen()
{var open=confirm("确认打开新窗口");
if(open==true)
{var url=prompt("通过输入对话框,确定打开的网址","http://www.imooc.com");
if(url!=null)
{window.open(url,"_blank",'width=400px,height=500px,menubar=no');
}
else{alert("goodbye");}
else{alert("Goodbye");}