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

求指教,这段代码有什么错误?

RT。眼睛已花,究竟错在哪里了?把 confirm改正后还是不对。。

正在回答

2 回答

var a=comfirm('是否打开网址?');

是confirm不是comfirm

window.open('http://www.imooc.com/','_blank''width=400,height=500,menubar=no,toolbar=no');

这里冒号错了,参数之间缺了逗号

修改后的代码

<!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=confirm('是否打开网址?');
            if(a==true){
                var url=prompt('请输入网址','http://www.imooc.com/');
                if(url!=null){
                    window.open('http://www.imooc.com/','_blank','width=400,height=500,menubar=no,toolbar=no');
                }
                else{
                    alert('bye');
                }
            }
            else{
                alert('byeagain');
            }
        }
    </script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>


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

加油兮兮 提问者

谢谢你!
2015-10-19 回复 有任何疑惑可以回复我~
#2

Perona 回复 加油兮兮 提问者

不客气
2015-10-19 回复 有任何疑惑可以回复我~

confirm

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

举报

0/150
提交
取消

求指教,这段代码有什么错误?

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