JS练习问题
function openWindow(){ var open = confirm("是否打开新窗口?"); var web = prompt("请输入要打开的网址","http://www.imooc.com"); if(web==true){ window.open('http://www.imooc.com','width=400px,height=500px'); } else{ null } } 为什么不行?
function openWindow(){ var open = confirm("是否打开新窗口?"); var web = prompt("请输入要打开的网址","http://www.imooc.com"); if(web==true){ window.open('http://www.imooc.com','width=400px,height=500px'); } else{ null } } 为什么不行?
2015-05-13
举报