DocumentFragment: lastElementChild プロパティ
DocumentFragment.firstElementChild
は読み取り専用プロパティで、この文書フラグメントの最後の子要素
を返します。子要素がなければ null
を返します。
値
このオブジェクトの最後の子要素である Element
です。存在しなければ null
です。
例
js
let fragment = new DocumentFragment();
fragment.lastElementChild; // null
let paragraph = document.createElement("p");
fragment.appendChild(paragraph);
fragment.lastElementChild; // <p>
仕様書
Specification |
---|
DOM Standard # ref-for-dom-parentnode-lastelementchild① |
ブラウザーの互換性
BCD tables only load in the browser