answer
function openWindow() { var choix; choix=confirm("是否打开新网页啊?嘻嘻嘻..."); if(choix==true) window.open('http://www.imooc.com/','new','width=400,height=500,menubar=no,toolbar=no'); else alert('(⊙o⊙)哦'); }
function openWindow() { var choix; choix=confirm("是否打开新网页啊?嘻嘻嘻..."); if(choix==true) window.open('http://www.imooc.com/','new','width=400,height=500,menubar=no,toolbar=no'); else alert('(⊙o⊙)哦'); }
2017-01-21
新窗口打开不是用“new”,是用“_blank”方式,修改为windows.open('http://www.imooc.com/','_blank','width=400,height=500,menubar=no,toolbar=no');就可以了
举报