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

第一步confirm就打不开啊这是为啥???

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

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

  <script type="text/javascript">  

      function openWindow(){

        var mymessage=confirm("确认打开新网站吗?")

        if(mymessage==true){

            var window;

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

            if(window!=null){

            window.open('http://www.imooc.com/','_blank''width:400,height:500,menubar=no,toolbar=no');

        }

    }

        else{

            alert("不打开网站了");

        }

    }

  

    

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


提问者:周姨我再也不生气了 2019-03-15 17:08

个回答

  • qq_慕勒1263280
    2019-03-19 08:38:28

    这代码出来的是函数。。

    函数不调用是没有效果的

  • BlueCat
    2019-03-18 17:05:29

    <!DOCTYPE html>

    <html>

     <head>

      <title> new document </title>  

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

      <script type="text/javascript">  

          function openWindow(){

            var mymessage=confirm("确认打开新网站吗?");

            if(mymessage==true){

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

                if(mywindow!=null){

                    window.open('http://www.imooc.com','_blank','width=400,height=500,menubar=no,toolbar=no')

                }

            }

            else{

                alert("不打开网站了");

            }

        }

      </script> 

     </head> 

     <body> 

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

     </body>

    </html>


  • 玄之又玄上
    2019-03-17 19:01:37

    '_blank'后面少个逗号

  • 请叫我军军
    2019-03-15 17:45:04

    confirm("确认打开新网站吗?");少了“;”