问答详情
源自:2-7 编程练习

为什么我这样写 网页不弹出来?

https://img4.mukewang.com/5c8607210001036512760586.jpg

啦啦啦啦啦


    function openWindow(){

        var open=confirm("是否打开");

        if(open==true)

        {

            window.open('http://www.imooc.com','_blank','width=600,height=400,top=100,left=0, status=no,scrollbars=yes')

        }

        else

        {

            alert("再见")

        }

    }

    


提问者:hjhhhh 2019-03-11 14:59

个回答

  • BlueCat
    2019-03-18 17:19:30

    <!DOCTYPE html>

    <html>

     <head>

      <title> new document </title>  

      <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>   

      <script type="text/javascript">  

          function openWindow(){

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

              if(a==true){

                  var newweb=prompt('确认打开的网址:','http://www.imooc.com');

                  if(newweb!=null){

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

                  }

                  else{

                    alert(2);

                  }

              }

              else{

                alert(5);

              }

          }   

      </script> 

     </head> 

     <body> 

      <input type="button" value="新窗口打开网站" onclick="openWindow()" /> 

     </body>

    </html>


  • We_are_young
    2019-03-11 21:48:36

    可能是被你的浏览器拦截了