DocumentFragment: firstElementChild プロパティ
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
DocumentFragment.firstElementChild
は読み取り専用プロパティで、この文書フラグメントの最初の子要素
を返します。子要素がなければ null
を返します。
値
このオブジェクトの最初の子要素である Element
です。存在しなければ null
です。
例
js
let fragment = new DocumentFragment();
fragment.firstElementChild; // null
let paragraph = document.createElement("p");
fragment.appendChild(paragraph);
fragment.firstElementChild; // <p>
仕様書
Specification |
---|
DOM Standard # ref-for-dom-parentnode-firstelementchild① |
ブラウザーの互換性
BCD tables only load in the browser