问答详情
源自: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 tom1=confirm("你确定要打开吗?");
    if(tom1==true)
    {
        var tom2=prompt("要打开的网站是这个吗?","http://www.imooc.com/");
        if(tom2!=null)
        {
            window.open(tom2,'_blank','width=400,height=500,menubar=no,toolbar=no,scrollbars=yes,status=yes');
        }
        else
        {
            alert("无网站,打不开");
        }
    }
    else
    {
        alert("你选择不打开这个网站。");
    }
        }
    // 新窗口打开时弹出确认框,是否打开

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

    //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
    
    
  </script>
 </head>
 <body>
      <input type="button" value="新窗口打开网站" onclick="openWindow()" />
 </body>
</html>

提问者:qq_尽智而动_0 2016-06-06 18:46

个回答

  • 南山一修
    2016-06-06 19:11:56
    已采纳

    if里面套if?