不知道怎么写了 有完整的代码吗?

来源:2-7 编程练习

qq_戒_28

2017-06-21 20:16

来个准确的大神吧

写回答 关注

2回答

  • 痕二
    2017-07-04 11:27:10

    "window.open(url."    这个url啥用啊

  • 晓宇宙
    2017-06-21 20:51:04

    <!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 open=confirm("确认新建窗口打开网站吗?");

                if(open==true)

                    {var url=prompt("通过输入对话框,确定打开的网址","http://www.imooc.com");

                        if(url!==null){

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

                        }

                         else{

                             alert("再见2");

                        }

                }   

               else{

                   alert("再见1");

                }

         }


     </script> 

     </head> 

     <body> 

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

     </body>

    </html>


JavaScript入门篇

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

739817 学习 · 9566 问题

查看课程

相似问题