answer
function openMyWindow(){ ? ? ? ? ? ?var myMsg=confirm('確認(rèn)打開(kāi)網(wǎng)頁(yè)嗎'); ? ? ? ? ? ?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("確認(rèn)打開(kāi)新窗口嗎?");
? ? // 新窗口打開(kāi)時(shí)彈出確認(rèn)框,是否打開(kāi)
if(myindex == true){
? ? window.open('http://idcbgp.cn/','新窗口','width=400,height=500,menubar=no,status=no,scrollbars=yes');
}? ? }