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

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

  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 回答

<!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>


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

qq_南古_0

第十一行的"_blank"写错地方了,应该在十四行ss的后面
2018-12-24 回复 有任何疑惑可以回复我~

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('我点击了取消');

    }

  }


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

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

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

<!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>


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

举报

0/150
提交
取消

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

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