blob: 34804c564431d58286d55d11ed4a1b6229535f6f (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
---
title: Node.lastChild
slug: Web/API/Node/lastChild
translation_of: Web/API/Node/lastChild
---
<div>{{APIRef("DOM")}}</div>
<p>La proprietà di sola lettura <code><strong>Node.lastChild</strong></code> restituisce l'ultimo figlio del nodo. Se il suo genitore è un elemento, allora il bambino è generalmente un nodo di elemento, un nodo di testo o un nodo di commento. Restituisce <code>null</code> se non ci sono elementi figli.</p>
<h2 id="Sintassi">Sintassi</h2>
<pre class="syntaxbox">var <var>childNode</var> = <var>node</var>.lastChild;
</pre>
<h2 id="Esempio">Esempio</h2>
<pre class="brush: js">var tr = document.getElementById("row1");
var corner_td = tr.lastChild;
</pre>
<h2 id="Specifiche">Specifiche</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specifica</th>
<th scope="col">Stato</th>
<th scope="col">Commento</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('DOM WHATWG', '#dom-node-lastchild', 'Node.lastChild')}}</td>
<td>{{Spec2('DOM WHATWG')}}</td>
<td>Nessun cambiamento</td>
</tr>
<tr>
<td>{{SpecName('DOM3 Core', 'core.html#ID-61AD09FB', 'Node.lastChild')}}</td>
<td>{{Spec2('DOM3 Core')}}</td>
<td>Nessun cambiamento</td>
</tr>
<tr>
<td>{{SpecName('DOM2 Core', 'core.html#ID-61AD09FB', 'Node.lastChild')}}</td>
<td>{{Spec2('DOM2 Core')}}</td>
<td>Nessun cambiamento</td>
</tr>
<tr>
<td>{{SpecName('DOM1', 'level-one-core.html#ID-61AD09FB', 'Node.lastChild')}}</td>
<td>{{Spec2('DOM1')}}</td>
<td>Definizione iniziale</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilità_con_i_browser">Compatibilità con i browser</h2>
<p>{{Compat("api.Node.lastChild")}}</p>
|