哪位大师 看看到底哪里出错了 珍是醉了!
function openWindow(){
var myMessage = confirm("打开?");
if (myMessage == true){
var webSite = prompt("请输入正确地址::","http://www.imooc.com/");
if(webSite!=null){
window.open(webSite,'_blank','width=400,height=500,menubar=no,toolbar=no');
}else{
alert('下次再见吧!');
}
}else{
alert('下次再见吧!');
}
}