打不开啊!求大神指导
function openWindow(){ var meme; meme=confirm("ok?"); if (meme==ture) { var url; url=prompt("input the web"); if(url==null) { window.open('http://www.imooc.com/','_blank','width=400,height=500,menubar=no,toolbar=no'); } else{ window.open(url,'_blank''width=400,height=500,menubar=no,toolbar=no'); } } else { alert("error!"); } }