问答详情
源自: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 mymessage=confirm("是否打开");

    if(mymessage==true)

    {

        var talk=prompt("请输入网址");

        window.open('talk','width=400,height=500,menubar=no,toolbar=no');

    }

    else

    {

        window.open('http://www.imooc.com','width=400,height=500,menubar=no,toolbar=no');   

    }

    }  

  </script> 

 </head> 

 <body> 

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

 </body>

</html>



提问者:WentworthPeach 2016-03-27 22:31

个回答

  • qq_包包世界我专业_0
    2016-03-27 23:38:59

    设置浏览器窗口的宽高度的值没有双引号

  • 蒙面比较帅
    2016-03-27 23:22:54

      var mymessage=confirm("是否打开");

    这句结尾使用了中文的分号

  • 珂仔踮起脚尖仰望星空
    2016-03-27 23:06:58

    我觉的是不是没有输入窗口名称属性啊

  • howyoung
    2016-03-27 22:58:38

    注意window.open()函数的语法:

    window.open([URL], [窗口名称], [参数字符串])

  • 万花艾本
    2016-03-27 22:53:24

     open window.('talk','width=400,height=500,menubar=no,toolbar=no');