document.write方法的相关问题
更新日期:
document.write
document.write 介绍
|
|
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加载方式为同步;
;