可以编译,编译成功
function openWindow(){
var mymessage = confirm("open a new window?");
if(mymessage==ture){
var newInput=prompt("pls enter something!!","http://www.imooc.com"); if(newInput!=null){
window.open(newInput,"_blank","width=400,height=500,toolbar=no,menubar=no"); }
}
}