Element: 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.
Element.firstElementChild
は読み取り専用のプロパティで、要素の最初の子を Element
で返します。子要素がない場合は null
を返します。
Element.firstElementChild
は要素ノードのみを含みます。
テキストやコメントノードなど、要素以外のノードを含むすべての子ノードを取得するには、 Node.firstChild
を使用してください。
値
Element
オブジェクト、または null
です。
例
html
<ul id="list">
<li>First (1)</li>
<li>Second (2)</li>
<li>Third (3)</li>
</ul>
<script>
const list = document.getElementById("list");
console.log(list.firstElementChild.textContent);
// logs "First (1)"
</script>
仕様書
Specification |
---|
DOM # ref-for-dom-parentnode-firstelementchild① |
ブラウザーの互換性
Report problems with this compatibility data on GitHubdesktop | mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
firstElementChild |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.