问答详情
源自: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(){
        // 新窗口打开时弹出确认框,是否打开
        if( confirm("确认要打开新窗口吗?") == true){
            var url = prompt("请输入一个网址:","http://www.imooc.com");
        }else{
            
        }
        if(url == true){
            window.open(url,'_blank','toolbar=no, menubar=no, scrollbars=yes,  width=400, height=400');
        }
    }
    // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
    //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
    
    
  </script> 
 </head> 
 <body> 
 <input type="button" value="新窗口打开网站" onclick="openWindow()" /> 
 </body>
</html>


提问者:Ticvory 2016-10-29 20:41

个回答

  • Oldbig_Lin
    2016-10-29 21:00:58
    已采纳

    将if(url == true)改为if(url!=null)就好了    url不是boolean数

  • 慕粉九星
    2016-10-29 21:37:21

    <!DOCTYPE html>

    <html>

     <head>

      <title> new document </title>  

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

      <script type="text/javascript">  

        

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

        function openWindow(){

        

        if(confirm("是否打开")==true)

        {

        var url1;

        url1=prompt("输入网址","http://www.imooc.com" )

        if(url1!=null)

       {window.open("url1","_blank","width=400","height=500","menubar=no","toolbar=no");}

        

        

        }

        else

        {}

        }


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


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

        

        

      </script> 

     </head> 

     <body> 

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

     </body>

    </html>



    打开后显示该页面无法显示??


  • 慕粉九星
    2016-10-29 21:36:12

    将if(url == true)改为if(url!=null)就好了,但是不输入网址此时依旧能打开啊???