为什么不显示?

来源:2-7 编程练习

慕婉清5026906

2018-10-07 17:10

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


写回答 关注

2回答

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

    另外还有两个问题,

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

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

    慕婉清502...

    好的,谢谢

    2018-10-11 20:55:11

    共 1 条回复 >

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

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

JavaScript入门篇

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

739817 学习 · 9566 问题

查看课程

相似问题