Edition for Web Developers — Last Updated 14 January 2025
マークアップを文書に動的に挿入するためのAPIはパーサーと相互作用するため、その動作は、HTML文書(およびHTMLパーサー)かXML文書(およびXMLパーサー)かのどちらで使用されるかによって異なる。
document = document.open()
前のオブジェクトを再利用する場合を除き、あたかもそれが新しいDocument
オブジェクトであるかのように、Document
に正しい場所で置換され、その後返される。
結果として得られるDocument
はHTMLパーサーが関連付けられており、 document.write()
を使用して解析するデータを与えることができる。
Document
がまだ解析されている場合、メソッドは効果がない。
Document
がXML文書である場合、"InvalidStateError
" DOMException
を投げる。
パーサーがカスタム要素コンストラクターを現在実行している場合、"InvalidStateError
" DOMException
を投げる。
window = document.open(url, name, features)
window.open()
メソッドのように動作する。
document.close()
document.open()
メソッドによって開かれた入力ストリームを閉じる。
Document
がXML文書である場合、"InvalidStateError
" DOMException
を投げる。
パーサーがカスタム要素コンストラクターを現在実行している場合、"InvalidStateError
" DOMException
を投げる。
document.write()
document.write(...text)
一般に、与えられた文字列をDocument
の入力ストリームに加える。
このメソッドは非常に特異な振る舞いを持つ。一部の場合において、このメソッドは、パーサーが実行されている間、HTMLパーサーの状態に影響を与えることができる。その結果、文書のソースに対応しないDOMをもたらす(たとえば、記述された文字列が、文字列"<plaintext>
"または"<!--
"である場合)。他の例では、あたかもdocument.open()
が呼び出されていたかのように、呼び出しが最初に現在のページをクリアできる。さらに多くの例では、メソッドは単に無視されるか、または例外を投げる。ユーザーエージェントは、このメソッドを介して挿入されたscript
要素の実行を回避することを明示的に許可される。さらに悪いことに、このメソッドの正確な動作は、場合によってはネットワーク遅延に依存する可能性があり、これはデバッグが非常に困難な障害につながる可能性がある。これらすべての理由から、このメソッドの使用は強く勧めない。
XML文書で呼び出されるとき、"InvalidStateError
" DOMException
を投げる。
パーサーがカスタム要素コンストラクターを現在実行している場合、"InvalidStateError
" DOMException
を投げる。
This method performs no sanitization to remove potentially-dangerous elements and attributes like script
or event handler content attributes.
document.writeln()
document.writeln(...text)
改行文字の後に、与えられた文字列をDocument
の入力ストリームに加える。必要ならば、open()
メソッドを暗黙のうちに最初に呼び出す。
XML文書で呼び出されるとき、"InvalidStateError
" DOMException
を投げる。
パーサーがカスタム要素コンストラクターを現在実行している場合、"InvalidStateError
" DOMException
を投げる。
This method performs no sanitization to remove potentially-dangerous elements and attributes like script
or event handler content attributes.
Support in all current engines.
DOMParser
インターフェイスDOMParser
インターフェイスは、HTMLまたはXMLのいずれかとして、文字列を解析することで新しいDocument
オブジェクトを作成することを可能にする。
parser = new DOMParser()
新しいDOMParser
オブジェクトを構築する。
document = parser.parseFromString(string, type)
typeに応じて、HTMLまたはXMLパーサーのいずれかを使用して文字列を解析し、結果のDocument
を返す。typeは、"text/html
"(HTMLパーサーを呼び出す)、または"text/xml
"、"application/xml
"、"application/xhtml+xml
"、もしくは"image/svg+xml
"(XMLパーサーを呼び出す)。
XMLパーサーの場合、文字列を解析できない場合、返されるDocument
は、結果のエラーを説明する要素が含まれる。
script
要素は解析中に評価されず、結果の文書のエンコーディングは常にUTF-8となることに注意する。The document's URL will be inherited from parser's relevant global object.
typeに上記以外の値を指定すると、TypeError
例外が投げられる。
構築してからparseFromString()
メソッドを呼び出す必要があるクラスとしてのDOMParser
の設計は、不幸な歴史的成果物である。もし今日にこの機能を設計していたとしたら、それはスタンドアロン機能になっただろう。For parsing HTML, the modern alternative is Document.parseHTMLUnsafe()
.
This method performs no sanitization to remove potentially-dangerous elements and attributes like script
or event handler content attributes.
element.setHTMLUnsafe(html)
Parses html using the HTML parser, and replaces the children of element with the result. element provides context for the HTML parser.
shadowRoot.setHTMLUnsafe(html)
Parses html using the HTML parser, and replaces the children of shadowRoot with the result. shadowRoot's host provides context for the HTML parser.
doc = Document.parseHTMLUnsafe(html)
Parses html using the HTML parser, and returns the resulting Document
.
script
要素は解析中に評価されず、結果の文書のエンコーディングは常にUTF-8となることに注意する。The document's URL will be about:blank
.
These methods perform no sanitization to remove potentially-dangerous elements and attributes like script
or event handler content attributes.
html = element.getHTML({ serializableShadowRoots, shadowRoots })
Returns the result of serializing element to HTML. Shadow roots within element are serialized according to the provided options:
If serializableShadowRoots
is true, then all shadow roots marked as serializable are serialized.
If the shadowRoots
array is provided, then all shadow roots specified in the array are serialized, regardless of whether or not they are marked as serializable.
If neither option is provided, then no shadow roots are serialized.
html = shadowRoot.getHTML({ serializableShadowRoots, shadowRoots })
Returns the result of serializing shadowRoot to HTML, using its shadow host as the context element. Shadow roots within shadowRoot are serialized according to the provided options, as above.
innerHTML
propertyThe innerHTML
property has a number of outstanding issues in the DOM Parsing and Serialization issue tracker, documenting various problems with its specification.
element.innerHTML
Returns a fragment of HTML or XML that represents the element's contents.
In the case of an XML document, throws a "InvalidStateError
" DOMException
if the element cannot be serialized to XML.
element.innerHTML = value
Replaces the contents of the element with nodes parsed from the given string.
In the case of an XML document, throws a "SyntaxError
" DOMException
if the given string is not well-formed.
shadowRoot.innerHTML
Returns a fragment of HTML that represents the shadow roots's contents.
shadowRoot.innerHTML = value
Replaces the contents of the shadow root with nodes parsed from the given string.
These properties' setters perform no sanitization to remove potentially-dangerous elements and attributes like script
or event handler content attributes.
outerHTML
propertyThe outerHTML
property has a number of outstanding issues in the DOM Parsing and Serialization issue tracker, documenting various problems with its specification.
element.outerHTML
Returns a fragment of HTML or XML that represents the element and its contents.
In the case of an XML document, throws a "InvalidStateError
" DOMException
if the element cannot be serialized to XML.
element.outerHTML = value
Replaces the element with nodes parsed from the given string.
In the case of an XML document, throws a "SyntaxError
" DOMException
if the given string is not well-formed.
Throws a "NoModificationAllowedError
" DOMException
if the parent of the element is a Document
.
This property's setter performs no sanitization to remove potentially-dangerous elements and attributes like script
or event handler content attributes.
insertAdjacentHTML()
methodThe insertAdjacentHTML()
method has a number of outstanding issues in the DOM Parsing and Serialization issue tracker, documenting various problems with its specification.
element.insertAdjacentHTML(position, string)
Parses string as HTML or XML and inserts the resulting nodes into the tree in the position given by the position argument, as follows:
beforebegin
"afterbegin
"beforeend
"afterend
"Throws a "SyntaxError
" DOMException
if the arguments have invalid values (e.g., in the case of an XML document, if the given string is not well-formed).
Throws a "NoModificationAllowedError
" DOMException
if the given position isn't possible (e.g. inserting elements after the root element of a Document
).
This method performs no sanitization to remove potentially-dangerous elements and attributes like script
or event handler content attributes.
createContextualFragment()
methodThe createContextualFragment()
method has a number of outstanding issues in the DOM Parsing and Serialization issue tracker, documenting various problems with its specification.
docFragment = range.createContextualFragment(string)
Returns a DocumentFragment
created from the markup string string using range's start node as the context in which fragment is parsed.
This method performs no sanitization to remove potentially-dangerous elements and attributes like script
or event handler content attributes.