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

问题出在哪

<!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("是否打开")

    var mypro=prompt("确定打开的网址","http://www.imooc.com/")

    {

       if(message==true;)

       {

           

           if(mypro=="http://www.imooc.com/")

           {

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

           }

           else{}

       }

       else{}

    

        

    }

   }

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


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


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

    

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


提问者:xymashiro 2017-02-05 15:15

个回答

  • 金风玉露亦相逢
    2017-02-06 10:30:06
    已采纳

    先判断再打开输入框

     function openWindow(){

        var message=confirm("是否打开");

           if(message==true){

                var mypro=prompt("确定打开的网址","http://www.imooc.com/")

                if(...){

                    }else{

                            }

            }


  • xymashiro
    2017-02-05 15:16:33

    弹出的第一个窗口点取消也会强制弹出第二个输入框,同时再点取消,也会强制弹出网页