answer
function openMyWindow(){ ? ? ? ? ? ?var myMsg=confirm('確認打開網(wǎng)頁嗎'); ? ? ? ? ? ?function myOpen(){ ? ? ? ? ? ? ? ?window.open('http://imooc.com','_blank','width=400,height=500,menubar=no,status=no,scrollbars=yes'); ? ? ? ? ? ? ? ?if(myMsg==true){ ? ? ? ? ? ? ? ? ? ?myOpen(); ? ? } ? ? ? ? } ? ? ?}
2020-07-08
function openWindow(){
? ? ? ? var myindex = confirm("確認打開新窗口嗎?");
? ? // 新窗口打開時彈出確認框,是否打開
if(myindex == true){
? ? window.open('http://idcbgp.cn/','新窗口','width=400,height=500,menubar=no,status=no,scrollbars=yes');
}? ? }