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

        if(open==true)

        {

            var web=prompt("请输入网址:", 'http://www.imooc.com/');

            

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

            

            

        }

        else

        {

            alert("蟹蟹!!");

        }

    }

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


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


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

    

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


提问者:murmurcheater 2018-08-05 19:03

个回答

  • 凡笑李白
    2018-08-14 11:14:03

    两个地方用了中文的分号,并且网址的冒号:,你也是用中文的。

  • 笑看风声
    2018-08-05 19:15:34

    因为你有两个地方用了中文的分号