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

运行不出结果来,想知道哪里不对,求帮忙

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

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

  <script type="text/javascript">  

    

   

       

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

funv

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


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

    function openWindow(){

        var mymessage=confirm("确认打开窗口吗");

        if(mymessage==true){

         var net=prompt("请输入网址");

         if(net!=null){

              window.open(net,’_blank’,’width=400,height=500,menubar=no,tollbar=no’);

         }

        }

        

    }

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


提问者:silence1074563 2015-03-17 20:38

个回答

  • silence1074563
    2015-03-18 19:43:12

    这都能看出来,太厉害了!

  • lymo
    2015-03-17 21:25:21

    window.open(net,'_blank','width=400,height=500,menubar=no,tollbar=no'); //这里用了全角的单引号。