问答详情
源自: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 mycho=confirm("新窗口打开网页吗?");

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

        if (mycho==true) 

        {

            var mymessage=prompt("输入网址");

            if (mymessage!=null)

            {

                window.open(mymessage,'width:400px','height:500px','menubar:no'.'toolbar:no');

            }

            else

            {

            alert("没有输入网址,再见");

            window.close;

            }

        }

        else

        {

            window.close;

        }

    }

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


提问者:回头是俺0 2018-12-28 10:48

个回答

  • 回头是俺0
    2018-12-28 10:55:16

    明白了,toolbar逗号写成了句号。。