Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Node.lastChild

概要

lastChild はノードの子要素の内、最後のものを返します。

構文

var last_child = element.lastChild

説明

lastChild として返されるのはノードです。その親が要素であるならば、子ノードは一般的に Element ノード、Text ノード、Comment ノード となります。子要素を持たない場合は null が返されます。

var tr = document.getElementById("row1");  // table 要素の特定の行を取得
var corner_td = tr.lastChild;  // 特定の行の内、最後のセルを取得

仕様書

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: fscholz, xuancanh, ethertank, Ryotakano
 最終更新者: xuancanh,