我的答案是這樣
?function openWindow(){
? ? var mywin = "http://idcbgp.cn/";
? ? var mycon = confirm("您要打開窗口么?");
? ? if(mycon){
? ? ? ? var mypro = prompt('確認(rèn)打開網(wǎng)址',mywin);
? ? ? ? if(mypro)
? ? ? ? {
? ? ? ? ? ?window.open(mywin,"_blank","width=400,height=500");
? ? ? ? }
? ? }
? ? // 通過輸入對話框,確定打開的網(wǎng)址,默認(rèn)為 http://idcbgp.cn/
? ? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
? ? }
2017-05-10
function openWindow(){
? ? var mywin = "http://idcbgp.cn/";
? ? var mycon = confirm("您要打開窗口么?");
? // 通過輸入對話框,確定打開的網(wǎng)址,默認(rèn)為 http://idcbgp.cn/
? ? if(mycon){
? ? ? ? var mypro = prompt('確認(rèn)打開網(wǎng)址',mywin);
? ? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
? ? ? ? if(mypro)
? ? ? ? {
? ? ? ? ? ?window.open(mywin,"_blank","width=400,height=500,menubar=no,toolbar=no
,");
? ? ? ? }
? ? }
? ? }