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

新跳的网页怎么打不开

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

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

  <script type="text/javascript">  

        var ins=prompt("shifoudakai","http://www.imooc.com/");

        if(ins!=null){

            

           window.open(ins,"_blank",'width=400px,height=500px,menubar=no,toolbar=no');    


        }

    

    

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


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


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

    

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


提问者:clk666 2018-07-21 05:08

个回答

  • clk666
    2018-07-23 07:12:41

    谢谢,谢谢

  • 夜斗_
    2018-07-22 20:54:24

    注意细节,你的function openWindow(){ }都没写,把你代码放到这里面才有效。原因就是找不到该方法

  • WPierre
    2018-07-21 09:02:39

    就我检查发现的问题:

    1. 你的地址输入冒号不是英文输入。正确应该是 http://www.imooc.com

    2. window.open(ins,"_blank",'width=400px','height=500px','menubar=no','toolbar=no'),你输入的是只用两个单引号把后边的参数全部包括真的可以么?

      别的没了,谢谢。