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

帮忙差错谢谢

//编写JS代码
document.write("系好安全带,准备启航--目标JS");
function go(){
    var yourconfirm =confirm("你准备好了么?");
    if (yourconfirm==true){
        document.write("准备好了起航吧");
}
        else{
        document.write("没准备好,继续学习吧");
        }           
        }

提问者:smida 2015-07-01 14:57

个回答

  • 疯子靳
    2015-07-24 17:14:42

    这段代码没有错,在body里要调go这个方法

  • 丿丫丫
    2015-07-01 15:40:10

    因为go函数没有调用。。请在最后面写上go() 来调用函数

  • smida
    2015-07-01 14:59:43

    为什么没有页面上没有输出文本