为了账号安全,请及时绑定邮箱和手机立即绑定

我仔细检查了符号,没有错,可是点击按钮没有任何结果,求大神解惑

<!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>

正在回答

1 回答

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

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

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

0 回复 有任何疑惑可以回复我~
#1

有晴无晴 提问者

非常感谢,竟是括号的问题,服了我自己了
2017-05-21 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

我仔细检查了符号,没有错,可是点击按钮没有任何结果,求大神解惑

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信