Document.write() - Web APIs 编辑
The Document.write()
method writes a string of text to a document stream opened by document.open()
.
document.write()
writes to the document stream, calling document.write()
on a closed (loaded) document automatically calls document.open()
, which will clear the document.Syntax
document.write(markup);
Parameters
- markup
- A string containing the text to be written to the document.
Example
<html>
<head>
<title>Write example</title>
<script>
function newContent() {
document.open();
document.write("<h1>Out with the old, in with the new!</h1>");
document.close();
}
</script>
</head>
<body onload="newContent();">
<p>Some original document content.</p>
</body>
</html>
Notes
The text you write is parsed into the document's structure model. In the example above, the h1
element becomes a node in the document.
Writing to a document that has already loaded without calling document.open()
will automatically call document.open()
. After writing, call document.close()
to tell the browser to finish loading the page.
If the document.write()
call is embedded within an inline HTML <script>
tag, then it will not call document.open()
. For example:
<script>
document.write("<h1>Main title</h1>")
</script>
Note: document.write()
and document.writeln
do not work in XHTML documents (you'll get an "Operation is not supported" [NS_ERROR_DOM_NOT_SUPPORTED_ERR
] error in the error console). This happens when opening a local file with the .xhtml file extension or for any document served with an application/xhtml+xml
MIME type. More information is available in the W3C XHTML FAQ. Note: Using document.write()
in deferred or asynchronous scripts will be ignored and you'll get a message like "A call to document.write()
from an asynchronously-loaded external script was ignored" in the error console. Note: In Edge only, calling document.write()
more than once in an <iframe>
causes the error "SCRIPT70: Permission denied". Note: Starting with version 55, Chrome will not execute <script>
elements injected via document.write()
when specific conditions are met. For more information, refer to Intervening against document.write().Specifications
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论