DOM

백아름·2023년 5월 2일
0

프론트엔드

목록 보기
11/80

DOM(Document Object Model)

  • HTML 요소를 Object(JavaScript Object)처럼 조작(Manipulation)할 수 있는 Model

console.dir

  • DOM을 객체의 모습으로 출력

if (node.parentElement) {

node.parentElement.style.color = "red";
}

document.body.children

document.body.parentelement

트리 구조

element와 node의 차이

profile
곧 훌륭해질 거에요!

0개의 댓글