为什么点击新窗口打开网站打不开?

来源:2-7 编程练习

qq嘿嘿

2018-12-10 12:52

  function openWindow()
  {
   var open=confirm("确认新窗口打开网站吗");
   if(open==true)
   {  var url=prompt("输入要打开的网站","http://www.imooc.com/");
      if(url!=null)
      {
      window.open('url','_blank','width=400,height=500,menubar=no,toolbar=no');
      }
      else
      {
          alert("baibai");
      }
      }
   else
   { alert("baibai");
   }

写回答 关注

4回答

  • qq_南古_0
    2018-12-24 21:04:15

    <!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 cc=confirm("是否打开?")

            if(cc==true)

            {

                var ss=prompt("输入打开的网址","http://www.imooc.com/","_blank")

                if(ss!=null)

                {

                window.open(ss,"width=400,height=500,menubar=no,toolbar=no");

                }

                else{

                    alert("你点击了取消");

                }

            }

            else

            {

                alert("你点击了取消");

            }

        }


        

      </script> 

     </head> 

     <body> 

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

     </body>

    </html>


    qq_南古_...

    第十一行的"_blank"写错地方了,应该在十四行ss的后面

    2018-12-24 21:06:31

    共 1 条回复 >

  • 慕移动5083425
    2018-12-12 17:46:59

    function openWindow(){

        var newwindow=confirm("是否打开慕课网?")

        if(newwindow==true)

        {

            document.write('我点击了确定');

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

        }

        else

        {

            document.write('我点击了取消');

        }

      }


  • 慕瓜7200721
    2018-12-10 15:46:12

     window.open('url','_blank','width=400,height=500,menubar=no,toolbar=no');里面的URL,你直接引用参数URL的不用加双引号。加了双引号等于你输入的参数是“url”,找不到你的位置的

  • 慕雪9542895
    2018-12-10 14:02:29

    <!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 tishikuang =confirm("是否打开新窗口");

        if(tishikuang==true) {

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

        }

        

    }

        // 新窗口打开时弹出确认框,是否打开


        // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/


        //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。

        

        

      </script> 

     </head> 

     <body> 

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

     </body>

    </html>


JavaScript入门篇

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

739816 学习 · 9566 问题

查看课程

相似问题