DOM:document.write
From MDC
Contents |
[edit] Summary
Writes a string of text to a document stream opened by document.open().
[edit] Syntax
document.write(markup);
-
markupis a string containing the text to be written to the document.
[edit] Example
<html>
<head>
<title>write example</title>
<script type="text/javascript">
function newContent()
{
alert("load new content");
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>
[edit] Notes
Writing to a document that has already loaded without calling document.open() will automatically perform a document.open call. Once you have finished writing, it is recommended to call document.close(), to tell the browser to finish loading the page. 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.
If the document.write() call is embedded directly in the HTML code, then it will not call document.open(). For example:
<div>
<script type="text/javascript">
document.write("<h1>Main title</h1>")
</script>
</div>