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

运行不了,哪里错了?

https://img3.mukewang.com/5c4434f700019dab06340516.jpg 来个大神~

提问者:别比比 2019-01-20 16:45

个回答

  • KingToAce
    2019-01-21 16:00:19

    按照你的代码,我运行了一下是可以运行的,建议代码格式化一下,不然看起来有点混乱

    <!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 a = confirm("是否打开网页");
            if(a == true){
                var b = prompt("确认打开的网址","http://www.hao123.com/");
                if(b != null){
                    window.open(b,'width=400','height=500','menuber=no','tooblar');
                }else{
                    alert("666666");
                }
            }else{
                alert("888888");
            }
        }
      </script> 
     </head> 
     <body> 
          <input type="button" value="新窗口打开网站" onclick="openWindow()" /> 
     </body>
    </html>


  • 一只胖胖胖喵
    2019-01-20 19:35:03

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

    打开窗口的参数写错了,可改为window.open(b,"_blank","width=400,height=500,menubar=no,toolbar=no");