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

为什么“http://www.imooc.com”不正确

function openWindow()
    {
        var message=confirm("是否打开?")
        if(message==true)
         {var myurl=prompt("输入打开的网址","http://www.baidu.com");
         window.open("myurl"_blank","width=400,height=500");
         }
        else
        document.write("not open");
        
    }

提问者:简单的阳光 2016-03-27 14:07

个回答

  • morepain
    2016-03-28 12:17:41
    已采纳

    window.open 第一个URL参数不用加双引号,并且与第二个参数用逗号隔开

  • 陶醉在你的微笑
    2016-03-27 14:25:09

    错误1:message==true 是比较两个字符串是否相等 而你要判断的是message的逻辑值是否为真,所以要用message=true

    错误2:你没有理解prompt和window.open的用法