问答详情
源自: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 a;
      a=confirm("您好,您确认打开此窗口");
     
      if (a==true)
        {   var b=prompt("您好,请输入您要打开的窗口地址:");
           
         if(b!=null)    
           {window.open(b,'_blank','wdith=400px,height=500px,menubal=no,toolbal=no');}
             else
            {window.open('http//:www.17173.com','_blank');}
    }else{window.open('http//:www.17173.com','_blank');}
       
}  
  </script>
 </head>
 <body>
      <input type="button" value="新窗口打开网站" onclick="openWindow()" />
 </body>
</html>

我想在点击取消的时候,跳到另外一个我设定好的网址,该怎么办?

提问者:Jesuer 2015-08-29 20:09

个回答

  • 冰封四月
    2015-10-24 15:46:57

    另外,是menubar和nullbar,不是menubal和nullbel。

  • 非常OK
    2015-08-29 21:31:09

    <!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 a;
          a=confirm("您好,您确认打开此窗口");
         
          if (a==true)
            {   var b=prompt("您好,请输入您要打开的窗口地址:");
               
             if(b!=null)    
               {window.open(b,'_blank','wdith=400px,height=500px,menubal=no,toolbal=no');}
                 else
                {window.open('http//:www.17173.com','_blank');}
        }

    else

    {

    window.open('http://www.baidu.com','_blank');//这里改一下你要设定的网站。记住要加http:// 是冒号后双//

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