我的代码错在哪里了 为什么弹不出网页
var str = confirm("是否打开");
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
if(str == true){
var result = prompt("打开的网址是:","http://www.imooc.com");
// alert(result);
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
if(result != null){
window.open('http://www.imooc.com','_blank','width=400,height=500,menubar=no,toolbar=no');
// Wopen();
}else{
alert("请输入网址!");
}
}else{
alert("再见!");
}