The innerHTML Property The easiest way to get the content of an element is by using the innerHTML property. The innerHTML property is useful for getting or replacing the content of HTML elements. Example The following code gets the innerHTML from the element with id="intro": 1 2 3 4 5 6 7 8 9 10 11 12 Hello World! result) The nodeName Property The nodeName property specifies the name of a node. ..
HTML DOM Objects - Methods and Properties Some commonly used HTML DOM methods: getElementById(id) - get the node (element) with a specified id appendChild(node) - insert a new child node (element) removeChild(node) - remove a child node (element) Some commonly used HTML DOM properties: innerHTML - the text value of a node (element) parentNode - the parent node of a node (element) childNodes - th..
DOM 은 객체지향 모델로써 구조화된 문서를 표현하는 방식. - HTML을 위한 표준 객체 모델 - HTMl을 위한 표준 프로그래밍 인터페이스 - 플랫폼과 프로그래밍 언어에 독립적 - W3C 표준 DOM 단계 현행의 DOM 규격은 단계 2이다. 그러나 일부 단계 3 규격 역시 현재 W3C의 권고안이다. 단계 0 DOM이 만들어지기 이전의 모든 벤더 종속적인 DOM을 포함한다. 예: document.images, document.forms, document.layers, document.all. 그러나 이것은 W3C이 공식적으로 공개한 규격이 아니며, 표준화 이전에 있던 단계를 말한다. 단계 1 DOM 문서에 대한 탐색과 조정 단계 2 XML 명칭 공간(네임스페이스; namespace) 지원, 필터링된 뷰..