代码写出来了但显示不了效果,不知道哪出问题了?求指点:

来源:2-7 编程练习

慕尼黑506139

2018-09-24 15:16

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

  <meta http-equiv="Content-Type" content="text/html,charset=utf-8"/>   

  <script type="text/javascript">  

    function openWidow(){

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

        var input=confirm("确认打开?");

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

        if(input==ture){

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

            window.open('http://www.imooc.com/','_blank','menubar=no,scrollbars=yes,toolbar=no,status=no')

        }else

        {   alert("null");

            } 

        openWidow();

    }

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


写回答 关注

4回答

  • simple自在
    2018-09-24 15:50:38
    已采纳
    <script type="text/javascript">
        // 新窗口打开时弹出确认框,是否打开
        var crel = confirm("Open a new window ?");
        if(crel == true){
            // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com
            var prel = prompt("Input url:", "http://www.imooc.com");
            //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
            window.open(prel, "_blank", "width=400,height=500,menubar=no,toolbar=no");
        }        
    </script>

    给你参考一下。

    你代码的问题:

    1、少了一个输入框 prompt。

    2、window.open 语句后面没有分号,

    慕尼黑506...

    回复 simple自在 还是没法运行,不知道哪出问题了

    2018-09-24 20:19:30

    共 8 条回复 >

  • 慕虎2201990
    2018-09-26 11:05:00

    <!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 dakai=confirm("打开窗口吗?");

        if(dakai==true)

        {

            

            var duihua=prompt("Input url:","http://www.imooc.com");

            if(duihua!=null){

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

            }

            else

            {

                alert("谢谢使用!")

            }

           

        }

        else{

            document.write("前端很好,你要学习哦!")

        }

      }

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


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


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

        

        

      </script> 

     </head> 

     <body> 

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

     </body>

    </html>


    慕尼黑506...

    widow.open()中_blank前面可以省略吗

    2018-09-26 16:14:42

    共 1 条回复 >

  • 慕尼黑506139
    2018-09-25 08:52:16

    function openWidow(){

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

            var input=confirm("Open a new window?");

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

            if(input==true){

                var url=prompt("input url:","http://www.imooc.com);

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

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

                }else{alert("null");

            }

        }

    问题找到了,input==true错写成input==ture;

  • 慕尼黑506139
    2018-09-24 20:06:07

    function openWidow(){

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

            var input=confirm("Open a new window?");

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

            if(input==ture){

                var url=prompt("input url:","http://www.imooc.com);

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

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

                }else{alert("null");

            }

        }

    <--打出如上代码页面还是打不开,是网址问题吗?-->

    慕尼黑506... 回复qq_旧巷少...

    代码true错写成了ture

    2018-09-26 17:05:55

    共 6 条回复 >

JavaScript入门篇

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

739817 学习 · 9566 问题

查看课程

相似问题