appendChild1 3월 16일 (1) JavaScript - node 활용 제어 노드 관계를 통한 요소 제어 HTML 요소 간의 관계를 활용(계층) 노드(Node) = HTML 요소 부모요소 > 자식요소 부모요소에서 자식요소 찾기 : 요소.childNodes; 자식요소는 반드시 복수(배열)이다. const subnodes = htmlnodes.childNodes; //부모입장에서 자식 노드 찾아가기 console.log(subnodes); 자식요소에서 부모요소 찾기 : 요소.parentElement; 부모요소는 반드시 하나다. const elem_b = document.querySelector("#bo"); console.log(elem_b.parentElement); // 자식 입장에서 부모 노드 찾아가기 elem_b.parentElement.style.backgroundColor.. 2023. 3. 16. 이전 1 다음