function openWindow() {var open=confirm("确定打开吗"); if(open==true){ var url=prompt("打开下面网址","http://www.imooc.com/"); if(url!=null) {window.open('http://www.imooc.com/','_blank',width=500px,height=400px)} }; else {return;} else {return;} } 怎么就不出现prompt的提示窗口呢
width=500px,height=400px这样代码为什么没有加引号
为什么会有两个else语句,还有if后面的大括号多了一个};把这个删掉,并且删掉一个else语句就应该可以了