prompt还是有问题
function openWindow(){ var open1=confirm("是否跳转到新窗口?"); if(open1==true){ prompt("请输入URL","http://www.imooc.com"); window.open("http://www.imooc.com","_blank","width:400px height:500px menubar=no toolbar=no"); } else{return null;} } 为什么prompt还是有问题