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

js外部文件 document.write("")输出

为什么引入JS外部文件里的document.write("系好安全带,准备启航--目标JS")在后面写上function...后,就不在右边输出了呢?有懂的人解释下吗



提问者:kx00012kx 2016-07-19 15:43

个回答

  • llo蛋蛋oll
    2016-07-19 16:24:05
    已采纳

    1. document.write()后面要加分号

    2. 注意if else if 语法,只有if 后面加判断条件,else后面永远跟的都是判断结果

  • snowmanJS
    2016-07-19 16:32:04

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


    function tan(){

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

        if(txt==true){

            document.write("aaa")                //少分号 document.write("aaa");

        }

        else(txt==false){                             //(txt==false)应该去掉

            document.write("bbb")              //少分号 document.write("bbb");

        }

        

        

        }


  • 秦朝炼丹师
    2016-07-19 16:03:08

    function是函数,不能引入外部函数,只能引入外部文本或文本框!

  • xdp9995
    2016-07-19 16:00:58

    document.write();,缺少了分号

  • 慕粉26
    2016-07-19 15:55:41

    交互是<form></form>,不加这个也可以,js中if要注意细节,加“;”。


  • hanjh5215
    2016-07-19 15:50:59

    用 src引入了吗