为了账号安全,请及时绑定邮箱和手机立即绑定

使用确认对话框判断 confirm

 function Wopen(){ 

  var string


if(string=confirm("是")){

window.open("https://www.imooc.com","_blank","width=300,height=200");

}else{

document.write("不打开");

}

}


正在回答

5 回答

function openWindows() {

var message = confirm('是否打开新网页');

if (message == true) {

window.open('https://www.baidu.com', 'address', '_blank', 'width=400;height500', 'menubar=no', 'toolbar=no')

}else{

window.close();

}

}


2 回复 有任何疑惑可以回复我~


  function openwindow(){

      var mass=confirm("是否打开新窗口?");

      if(mass==true){

          window.open('http://www.imooc.com/','width=400,height=500,toolbar=no');

      }else{

          window.close();

      }

  }

    

   


0 回复 有任何疑惑可以回复我~

 function openwindow(){

      var mass=confirm("是否打开新窗口?");

      if(mass==true){

          window.open('http:www.imooc.com/','width=400,height=500,toolbar=no');

      }else{

          window.close();

      }

  }


0 回复 有任何疑惑可以回复我~

运行成功

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

使用确认对话框判断 confirm

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信