问答详情
源自:2-7 编程练习

为什么运行不了

<!DOCTYPE HTML>
    <html>
<head>
    <title>测验</title>
    <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>

    <script type="text/javascript">
        function openWindow(){
          var open=confirm("确定要打开新的窗口吗?");
            if(open==true){
                var url=prompt("确定输入的网址","www.baidu.com");
                if(url!=null){
                    window.open(url,"_blank",'width=400px,height=500px,menubar=no,toolbar=no');
                }else{
                    alert("再见!");
                }
            }else{
            alert("byebye!");
            }
        }
 </script>
</head>
<body>
<input type="button" value="点击" onclick="openWindow()"/>
</body>
</html>

提问者:遙遠的她丶 2015-06-02 17:24

个回答

  • J丶_0
    2015-06-02 18:17:25

    括号错了 最后的else

  • 玥天
    2015-06-02 17:38:00

    在 alert("byebye"); 上面的括号是 中文的括号  你吧括号 重新打一遍就行了 else{
                alert("byebye!");
                }  这括号~  希望能帮到你