打不开啊!求大神指导

来源:2-7 编程练习

碎佛

2019-07-27 21:37

 function openWindow(){        var meme;        meme=confirm("ok?");        if (meme==ture)        {            var url;            url=prompt("input the web");            if(url==null)           { window.open('http://www.imooc.com/','_blank','width=400,height=500,menubar=no,toolbar=no');           }           else{               window.open(url,'_blank''width=400,height=500,menubar=no,toolbar=no');           }        }        else        {            alert("error!");        }    }


写回答 关注

2回答

  • weixin_慕前端8297515
    2019-07-28 00:20:21

    <!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 m_mes=confirm("是否打开666");

        if(m_mes==true)

        {

        prompt("这个是输入对话框,认识下prompt",

        "http://www.baidu.com/");

         window.open(

              'http://www.baidu.com','_blank',

          'width=400,height=500,top=100,menubar=no,toolbar=no'

          )  

        }

        else

        {

            document.write("nono-test!");

        }

      }  

      </script> 

     </head> 

     <body> 

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

     </body>

    </html>

  • qq_LoAcer_abdfk3
    2019-07-28 00:06:16

    你代码中

    if (url== null)

    这句的逻辑是反向的,应当改为 (url != null) ,还要看浏览器是否把你的弹出窗口拦截了,这个一般在浏览器地址栏有提示

JavaScript入门篇

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

739817 学习 · 9566 问题

查看课程

相似问题