新跳的网页怎么打不开

来源:2-7 编程练习

clk666

2018-07-21 05:08

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


写回答 关注

3回答

  • 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'),你输入的是只用两个单引号把后边的参数全部包括真的可以么?

      别的没了,谢谢。

    WPierr...

    问题2,单引号那个可以实现,抱歉。

    2018-07-21 09:10:14

    共 1 条回复 >

JavaScript入门篇

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

739817 学习 · 9566 问题

查看课程

相似问题