aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/node/lastchild/index.html
blob: e7f5626f3c7a72d4a5fe332a6d959ee9c541cd4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
title: Node.lastChild
slug: Web/API/Node/lastChild
tags:
  - DOM
  - Gecko
  - Gecko DOM Reference
  - Node
translation_of: Web/API/Node/lastChild
---
<div>
 {{ApiRef}}</div>
<h2 id="Summary" name="Summary">概要</h2>
<p><strong>lastChild</strong> はノードの子要素の内、最後のものを返します。</p>
<h2 id="Syntax_and_Values" name="Syntax_and_Values">構文</h2>
<pre class="syntaxbox">var last_child = element.lastChild
</pre>
<h2 id="Description" name="Description">説明</h2>
<p><code>lastChild</code> として返されるのはノードです。その親が要素であるならば、子ノードは一般的に Element ノード、Text ノード、Comment ノード となります。子要素を持たない場合は <code>null</code> が返されます。</p>
<h2 id="Example" name="Example"></h2>
<pre class="brush:js">var tr = document.getElementById("row1");  // table 要素の特定の行を取得
var corner_td = tr.lastChild;  // 特定の行の内、最後のセルを取得
</pre>
<h2 id="Specification" name="Specification">仕様書</h2>
<ul>
 <li>{{Spec("http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-61AD09FB", "DOM Level 2: lastChild", "REC")}}</li>
 <li>{{Spec("http://dom.spec.whatwg.org/#dom-node-lastchild", "DOM Standard: lastChild")}}</li>
</ul>