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

麻烦帮我看一下哪里出了问题,为什么生成不出来?

https://img3.mukewang.com/5c791e7a00015bf509970816.jpg麻烦帮我看一下哪里有问题,为什么不能生成?

提问者:猪猪的小朋友 2019-03-01 19:59

个回答

  • hhhole
    2019-03-10 13:19:34

    11行应该写错了,==null的话是做了相反的事件了。

  • 慕先生050283
    2019-03-09 13:38:40

    <!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 message = confirm("新窗口打开")

            if (message == true )

            {

               var inputs = prompt("请输入要打开的网站", "http://www.imooc.com/")

               if (inputs != null && inputs != "")

               {

                   window.open(inputs, "_blank", "width=400,height=500,menubar=no,toolbar=no,scrollbar=no")

               }

              else

              {

                  window.open("http://www.baidu.com/")

              }

            }


        }

      </script> 

     </head> 

     <body> 

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

     </body>

    </html>


  • 陈氏乐哥
    2019-03-05 17:19:11

    11行应该是url!=null


  • 慕斯卡1348015
    2019-03-05 09:46:38

    url!=null

    另外function缺了一个}

  • 林8328535
    2019-03-01 23:15:50

    不客气


  • 林8328535
    2019-03-01 23:07:35

    调用函数,课程 1-9 什么是函数,你可以看一下

  • 林8328535
    2019-03-01 21:23:05

    就是最后加一个, openWindow();

  • 林8328535
    2019-03-01 21:20:46

    抱歉,我说错了,应该是你没有调用函数。

  • 林8328535
    2019-03-01 20:08:18

    打开的窗口要求,应该放在html 10大括号中。