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

为什么不显示?

<!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 chen=confirm("是否打开网址");

         

        if(chen==true)

        {

          var wei=prompt("input url:","http://www.imooc.com/")

         window.open('wei','_blank','width=400px,height=5oopx,menubar=no,toolbar=no')

        }

    }

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


提问者:慕婉清5026906 2018-10-07 17:10

个回答

  • 慕神150753
    2018-10-07 20:41:58

    另外还有两个问题,

    1、默认网址http://www.imooc.com/不能是中文冒号

    2、window.open的第一个参数因为是变量名所以不能打引号

  • 慕神150753
    2018-10-07 20:37:36

    函数名不对应,onclick="openWindow()" 和function openwindow()中w一个大写一个小写