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

来源:2-7 编程练习

竹子glglgl

2016-07-06 22:34

只有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')
       }
    }
}

写回答 关注

3回答

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

    不是ture,而是true

    竹子glgl...

    好了~~谢谢

    2016-07-07 14:04:31

    共 1 条回复 >

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

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

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

    好了~~~谢谢

JavaScript入门篇

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

739817 学习 · 9566 问题

查看课程

相似问题