728x90
appendChild()와 insertBefore() 노드 메서드는 DOM 트리에 js 노드 객체를 추가할 수있게 해준다. appendChild() 메서드는 메서드를 호출 한 노드의 맨 마지막에 자식 노드를 하나 추가 한다. 만약 위치를 선택해 자식을 추가해야할 경우 insertBefore()를 사용하면 된다. insertBefore()는 두 개의 파라미터를 필요로 한다. 하나는 추가될 노드, 하나는 추가해야될 노드의 위치에 대한 레퍼런스 노드이다. 만약 insertBefore() 메서드에 두번째 파라미터를 사용하지 않을 경우 appendChild()처럼 동작 한다.
'java script > DOM' 카테고리의 다른 글
1.12 Using cloneNode() to Clone Nodes (0) | 2021.09.01 |
---|---|
1.11 Using removeChild() and replaceChild() to Remove and Replace Nodes (0) | 2021.08.31 |
1.9 Extracting Parts of the DOM Tree as JavaScript Strings (0) | 2021.08.28 |
1.8 Using JavaScript Strings to Create and Add Element and Text Nodes to the DOM (0) | 2021.08.27 |
1.7 Using JavaScript Methods to Create Element and Text Nodes (0) | 2021.08.25 |