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

为什么调用输入框的内容无法打开网址?

 function openWindow(){

   var click=confirm("open a new window?");

       if(click==true)

  {

  var url=prompt("write down the url please","http://www.imooc.com/");

   if(url!=null)

      {

          window.open('url','_blank','width:400px','height:500px','menubar=no','toolbar=no','scrollbars=yes');

      }

      else

      {

          alert("have fun!");

      }

  }

  else

  {

      alert("byebye!");

  }

   }


提问者:谢尔顿的发际线 2016-08-23 21:06

个回答

  • youli023023
    2016-08-23 21:09:32
    已采纳

     window.open('url','_blank','width:400px','height:500px','menubar=no','toolbar=no','scrollbars=yes');

    这一行中的url是变量而不是字符串,因此不需要用单引号包裹

  • youli023023
    2016-08-23 21:16:41

    刚刚看漏了,你后面输入的参数格式也是有问题的。正确的格式如下:

    window.open([URL], [窗口名称], [参数字符串])

    因此你那一行的代码应该写成:

     window.open(url,'_blank','width=400px,height=500px,menubar=no,toolbar=no,scrollbars=yes');

    希望能对你有帮助