Document: firstElementChild プロパティ
Document.firstElementChild
は読み取り専用プロパティで、この文書の最初の子要素 (Element
) を返します。子要素がなければ null
を返します。
HTML 文書においては、これは普通は唯一の子である、ルートの <html>
要素です。
文書内の特定の要素における最初の子要素については、 Element.firstElementChild
を参照してください。
値
Element
オブジェクト、または null
です。
例
js
document.firstElementChild;
// この文書の唯一の子でである、ルート <html> 要素を返す
仕様書
Specification |
---|
DOM Standard # ref-for-dom-parentnode-firstelementchild① |
ブラウザーの互換性
BCD tables only load in the browser