04js的write 用户8680906262196 2021-12-07 76 阅读1分钟 // alert() 弹窗,不在文档中,所以不识别标签,可以识别空格 // document.write() 文档写入 可以识别标签 // 文档 document.write(666); document.write('hello'); document.write('hello world'); document.write('<h1>hi</h1>');