04js的write

76 阅读1分钟

// alert() 弹窗,不在文档中,所以不识别标签,可以识别空格 // document.write() 文档写入 可以识别标签

    // 文档
    document.write(666);


    document.write('hello');

    document.write('hello    world');

    document.write('<h1>hi</h1>');