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

这样写是否有问题啊

function openWindow()
    {
        var a;
        var b;
        a=confirm("是否打开?");
        if(a==true){
            b=prompt("请输入‘确认’点击确定打开网站");
            if(b=="确认"){
            window.open('http//www.imooc.com/');
            
            
            }else{
            document.write("输入有误");
            }
        }else{
            document.write("已经取消");
        }
    }

提问者:qq_慕尼黑0053499 2019-10-15 15:50

个回答

  • weixin_慕瓜301543
    2019-10-15 19:00:47

    语法没问题,但是你网址拼错了,http后面应该有个冒号。