카테고리 없음

[ETC] attribute VS property

i독 2021. 10. 13. 06:51

[ HTML : attribute와 property 의 차이 ]

https://jeongwooahn.medium.com/html-attribute%EC%99%80-property-%EC%9D%98-%EC%B0%A8%EC%9D%B4-d3c172cebc41

 

attribute > HTML 요소의 추가적인 정보를 전달하고 이름="" 이렇게 쌍으로 온다.

<div class="my-class"></div> 보면 div 태그가 class 라는 값이 'my-class' attribute 가지고 있다.

property > attribute 대한 HTML DOM 트리안에서의 표현. 그래서 위의 Code 예로 들면 attribute 값은 'my-class'이며, 'my-class'라는 class name 가진 property 가진다.

 

간편하게 정리하자면 Attributes HTML 텍스트 문서 내에 있는 것이고, properties HTML DOM 트리에 있는 것이다.

attribute 변하지 않고 초기 값을 전달한다는 것을 의미하고 반면에 HTML properties 변할 있다.