问答详情
源自: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 open=confirm("您要打开新的窗口吗");
    if(open==true)
    {var cart=prompt("请输入网址","http://www.imooc.com/");
     if(cart!=null)
    {window.open(cart,"_blank",'width=400px,height=500px,menubar=no,toolbar=no');}
    else{alert("请输入网址");}
    }
    else{alert("结束");}
    }
  </script>
 </head>
 <body>
   <input type="button" value="新窗口打开网站" onclick="openWindow()" />
 </body>
</html>

提问者:有晴无晴 2017-05-21 20:19

个回答

  • 假装不是程序猿
    2017-05-21 20:46:18
    已采纳

    1. confirm 后面那个括号是中文的括号,需要修改为英文下的括号

    2. 比较 open === true   和 cart !== null  应该这样写 

    3. 其实这里的open === true 可以直接写一个 open 就可以了 不用比较,因为confirm返回的直接是true 或 false  可以直接给if