DOMImplementation.createHTMLDocument()
method creates a new HTML
Document
.
const newDoc = document.implementation.createHTMLDocument(title)
title
可选
(except in IE)
DOMString
containing the title to give the new HTML document.
This example creates a new HTML document and inserts it into an
<iframe>
in the current document.
Here's the HTML for this example:
<body> <p>Click <a href="javascript:makeDocument()">here</a> to create a new document and insert it below.</p> <iframe id="theFrame" src="about:blank" /> </body>
The JavaScript implementation of
makeDocument()
follows:
function makeDocument() {
let frame = document.getElementById("theFrame");
let doc = document.implementation.createHTMLDocument("New Document");
let p = doc.createElement("p");
p.innerHTML = "This is a new paragraph.";
try {
doc.body.appendChild(p);
} catch(e) {
console.log(e);
}
// Copy the new HTML document into the frame
let destDocument = frame.contentDocument;
let srcNode = doc.documentElement;
let newNode = destDocument.importNode(srcNode, true);
destDocument.replaceChild(newNode, destDocument.documentElement);
}
The code in lines 4–12 handle creating the new HTML document and inserting some content into it. Line 4 uses
createHTMLDocument()
to construct a new HTML document whose
<title>
is
"New Document"
. Lines 5 and 6 create a new paragraph element with some simple content, and then lines 8–12 handle inserting the new paragraph into the new document.
Line 16 pulls the
contentDocument
of the frame; this is the document into which we'll be injecting the new content. The next two lines handle importing the contents of our new document into the new document's context. Finally, line 20 actually replaces the contents of the frame with the new document's contents.
The returned document is pre-constructed with the following HTML:
<!doctype html> <html> <head> <title>title</title> </head> <body> </body> </html>
| 规范 | 状态 | 注释 |
|---|---|---|
|
DOM
The definition of 'DOMImplementation.createHTMLDocument' in that specification. |
实时标准 | 初始定义。 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
createHTMLDocument
|
Chrome Yes | Edge 12 | Firefox 4 |
IE
9
|
Opera Yes | Safari Yes | WebView Android Yes | Chrome Android Yes | Firefox Android Yes | Opera Android Yes | Safari iOS Yes | Samsung Internet Android Yes |
完整支持
见实现注意事项。
DOMImplementation
interface it belongs to.
DOMImplementation
createDocument()
createDocumentType()
createHTMLDocument()
hasFeature()
AbortController
AbortSignal
AbstractRange
Attr
ByteString
CDATASection
CSSPrimitiveValue
CSSValue
CSSValueList
CharacterData
ChildNode
注释
CustomEvent
DOMConfiguration
DOMError
DOMErrorHandler
DOMException
DOMImplementationList
DOMImplementationRegistry
DOMImplementationSource
DOMLocator
DOMObject
DOMParser
DOMPoint
DOMPointInit
DOMPointReadOnly
DOMRect
DOMString
DOMTimeStamp
DOMTokenList
DOMUserData
Document
DocumentFragment
DocumentType
元素
ElementTraversal
Entity
EntityReference
事件
EventTarget
HTMLCollection
MutationObserver
节点
NodeFilter
NodeIterator
NodeList
NonDocumentTypeChildNode
ProcessingInstruction
PromiseResolver
范围
StaticRange
文本
TextDecoder
TextEncoder
TimeRanges
TreeWalker
TypeInfo
USVString
UserDataHandler
XMLDocument