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

这样的代码是不是错误的?但还是正确运行,只是会跳出两个提示框

<script type="text/javascript">      

     alert("是否确认要打开新页面?");

     window.open("http://www.imooc.com");   window.open("http://www.imooc.com","_blank","width=400,hright=500");

</script> 


提问者:流星i 2019-03-19 16:52

个回答

  • 慕尼黑6037883
    2019-03-19 21:23:50
    已采纳

    1. 你的高height写错了

    2. 你这样是会弹出提示,但是没有实现他的功能要求呀

    可以参考一下我的

    <!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.imooc.com");

                if(b==null){

                    document.write('那没事了');

                }

                else{

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

                }

            }

            else{

                document.write('那没事了');

            }

        }

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


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


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

        

        

      </script> 

     </head> 

     <body> 

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

     </body>

    </html>


  • 不忘_666
    2019-03-20 02:47:06

    https://img3.mukewang.com/5c91391c0001b90310490686.jpg看下我的

  • 玄之又玄上
    2019-03-19 17:30:14

    代码是没错,对这个语句alert("是否确认要打开新页面?");无伦如何都会弹出两个网页,高的英语写错了,

  • qq_慕圣5398373
    2019-03-19 17:22:15

    不是,你写了两个弹框它就会弹出两个,删除一个就会弹出一个了