코딩/HTML
Attribute, Property
1. Attribute란? 속성이란 뜻을 지닌 attribute는 html문서에서 elements에 추가적인 정보를 넣을 때 사용되는 요소입니다. 위의 div태그의 "my-class"라는 클래스 속성을 볼 수 있는데, div태그는 element(요소)이고, class는 attrubute(속성)가 되며, my-class는 value(값)가 됩니다. 2. Property란? 특성이란 뜻을 지닌 property는 html dom 안에서 attribute를 나타내는 표현입니다. Our DIV node |- nodeName = "DIV" |- className = "my-class" |- style |- ... |- ... 위는 1. Attribute 의 코드를 DOM으로 나타낸 것입니다. className은 곧..
2020. 7. 16. 23:20
최근댓글