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

JS里面这么写对吗

//编写JS代码

document.write("系好安全带,准备启航--目标JS")


function context(){

    var mymessage=confirm("准备好了,起航吧!")

    if(mymessage==true){

        document.write("准备好了");

    }

    else{

        document.write("没玩够呢");

    }

    }


提问者:qq_小Lun_0 2015-08-17 09:45

个回答

  • 思君满月
    2015-08-17 10:08:47
    已采纳

    除了少了两个分号,没发现什么问题。

  • 小尧
    2015-08-17 10:24:14

    +函数没调用