文章目录
  1. 1. document.write
    1. 1.1. document.write 介绍
    2. 1.2. 与DOM Ready相关 tips
    3. 1.3. 与js相关 tips

document.write

document.write 介绍

1
document.write(markup);

markup is a string containing the text to be written to the document.

与DOM Ready相关 tips

  • DOM Ready执行document.write(), 会往页面上追加内容
  • DOM Ready执行document.write(), 会先清空页面内容,在写入新的内容;
    相当于 document.open() —> document.write() —> document.close()

与js相关 tips

document.write() 引入的js加载方式为同步;

document.write(js);

文章目录
  1. 1. document.write
    1. 1.1. document.write 介绍
    2. 1.2. 与DOM Ready相关 tips
    3. 1.3. 与js相关 tips