问答详情
源自: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 web=confirm("是否打开新的网站");

            confirm(web);

            if(web==true)

            {

            var site=prompt("输入你的网址",'http://www.imooc.com');

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

            }

       else{}

}

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


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


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

    

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>

不知为何第一个确认框总会返回true或者false,另外想在第二个对话框想访问输入的网址是不是还需要加一点东西?

提问者:C_黑鸡 2017-01-10 12:08

个回答

  • Herald523
    2017-01-10 13:23:49
    已采纳

    confirm()的返回值是boolean只会是TRUE或false

    用site变量做参数 window.open(site,"_blank","width=400,height500");