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

帮忙看一下代码问题? 只有confirm运行,后面不运行 去掉confirm部分后面也正常运行。

只有confirm运行,后面不运行

去掉confirm部分后面也正常运行。

不知道为什么我的代码不能连起来,谢谢~~~求指点


function openWindow()
{
    var massage=confirm("do u want to open?");
    if (massage==ture){
        
     var wantopen=prompt("write your web:","http://www.imooc.com/");
     if (wantopen!=null){
    window.open(' wantopen','blank','width=400,height=500,menubar=no,toolbar=no,status=no,scrollbars=yes')
       }
    }
}

提问者:竹子glglgl 2016-07-06 22:34

个回答

  • sxmbryant3617488
    2016-07-06 23:00:04
    已采纳

    不是ture,而是true

  • hahahahah
    2016-07-07 14:16:40

    message 是boolean类型,在if语句中只要这样写if(message)

  • 竹子glglgl
    2016-07-07 14:04:09

    好了~~~谢谢