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

为什么错了

取消却不能直接弹出再见
<!DOCTYPE html><html> <head>  <title> new document </title>    <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>     <script type="text/javascript">      function openWindow(){        var newWindow=confirm("正在尝试打开新网页,是否打开");        if(newWindow=true){            var msg=prompt("请输入你想去的网站:","http://www.imooc.com/");                          if(msg!=null){                window.open(msg,"_blank",'width=400px,height=500px,menubar=no,toolbar=no');              }else{              	alert("再见");              }        else{        	alert("再见");        }           }  </script>  </head>  <body> 	  <input type="button" value="新窗口打开网站" onclick="openWindow()" />  </body></html>


正在回答

2 回答

点了没有反应是你漏了一个};还有这句if(newWindow=true)导致你第一个选择否还是会跳出“请输入你想去的网站”,应该改成if(newWindow==true)。

0 回复 有任何疑惑可以回复我~
<!DOCTYPE html><html> <head>  <title> new document </title>
  <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
  <script type="text/javascript">
    function openWindow(){
      var newWindow=confirm("正在尝试打开新网页,是否打开");
      if(newWindow=true) {
        var msg = prompt("请输入你想去的网站:", "http://www.imooc.com/");
        if (msg != null) {
          window.open(msg, "_blank", 'width=400px,height=500px,menubar=no,toolbar=no');
        } else {
          alert("再见");
        }
      }
      else{
        alert("再见");        }
    }
  </script>  </head>  <body>     <input type="button" value="新窗口打开网站" onclick="openWindow()" />  </body></html>


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

举报

0/150
提交
取消

为什么错了

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