看看我的大家
function openWindow(){ var zhima=confirm("你确定要打开本网站吗?"); if (zhima) { document.write("很好"); window.open(prompt("请确认你的网址是否正确","http://www.imooc.com/") ,"_blank","width=400px,height=400px"); } else{ kaimen.close(); } }
function openWindow(){ var zhima=confirm("你确定要打开本网站吗?"); if (zhima) { document.write("很好"); window.open(prompt("请确认你的网址是否正确","http://www.imooc.com/") ,"_blank","width=400px,height=400px"); } else{ kaimen.close(); } }
2019-10-29
function openWindow() {
var url=prompt("是否打开","https://www.imooc.com/qadetail/334303?lastmedia=1");
if(url!=null) {
window.open(url,"_blank","wdith=400,height=500,menubar=no,toolbar=no");
}
}
举报