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

输入的网站地址打不开啊!!比如 http://www.baidu.com

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

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

  <script type="text/javascript">  

    

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


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


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

    function openWindow()

    {

            var isopen=confirm("是要打开新的窗口");

            if(isopen==true)

            {

                var address=prompt("请输入网站地址");

                window.open('address','_blank','width=400,height=500,menubar=no,toolbar=no')

            }

        }

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


提问者:彭若飞 2016-04-12 16:37

个回答

  • 未完待续3
    2016-04-12 17:12:55
    已采纳

    adress是变量,不用加引号

  • 彭若飞
    2016-04-12 16:50:30

    晕!!自己发现了  address不能加单引号 这是为神马??