使用確認(rèn)對(duì)話框判斷 confirm
?function Wopen(){?
? var string
if(string=confirm("是")){
window.open("http://idcbgp.cn","_blank","width=300,height=200");
}else{
document.write("不打開");
}
}
?function Wopen(){?
? var string
if(string=confirm("是")){
window.open("http://idcbgp.cn","_blank","width=300,height=200");
}else{
document.write("不打開");
}
}
2022-04-01
舉報(bào)
2022-08-18
function openWindows() {
var message = confirm('是否打開新網(wǎng)頁');
if (message == true) {
window.open('https://www.baidu.com', 'address', '_blank', 'width=400;height500', 'menubar=no', 'toolbar=no')
}else{
window.close();
}
}
2022-06-02
? function openwindow(){
? ? ? var mass=confirm("是否打開新窗口?");
? ? ? if(mass==true){
? ? ? ? ? window.open('http://idcbgp.cn/','width=400,height=500,toolbar=no');
? ? ? }else{
? ? ? ? ? window.close();
? ? ? }
? }
? ??
? ?
2022-06-02
?function openwindow(){
? ? ? var mass=confirm("是否打開新窗口?");
? ? ? if(mass==true){
? ? ? ? ? window.open('http:idcbgp.cn/','width=400,height=500,toolbar=no');
? ? ? }else{
? ? ? ? ? window.close();
? ? ? }
? }
2022-04-01
運(yùn)行成功