为什么我的alert不显示
能打开网站,有弹框,但是不显示alert的内容,两个都不显示,求各位大神看看
function openWindow(){
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,toolbar=no');
}
else
{alert("see u again!");}
}
else{
alert("see u!")
}