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

element.lastChild

요약

lastChild는 노드의 마지막 자식을 반환합니다.

구문과 값

last_child = element.lastChild

반환되는 last_child는 노드입니다. 노드의 부모가 요소이면, 자식은 보통 요소 노드, 텍스트 노드, 주석 노드입니다.

var tr = document.getElementById("row1");
corner_td = tr.lastChild;

주의

자식 요소가 없으면 null을 반환합니다.

명세

lastChild

문서 태그 및 공헌자

태그: 
 이 페이지의 공헌자: fscholz, AshfaqHossain, teoli, Netaras
 최종 변경: AshfaqHossain,