엘리멘트에 data- 속성을 추가하고 javascript를 이용하여 속성 값을 가져올 때 dataset을 사용한다.
<article
id="electriccars"
data-columns="3"
data-index-number="12314"
data-parent="cars">
...
</article>
var article = document.getElementById('electriccars');
article.dataset.columns // "3"
article.dataset.indexNumber // "12314"
article.dataset.parent // "cars"
developer.mozilla.org/ko/docs/Learn/HTML/Howto/Use_data_attributes
'javascript' 카테고리의 다른 글
storage에 객체 저장하고 꺼내기 (0) | 2020.11.08 |
---|---|
[Vanilla JS] 여러개의 요소에 AddEventListener 넣기 (0) | 2020.11.08 |
canvas context 학습내용1 (0) | 2020.11.07 |
javascript prototype 스터디 (0) | 2020.11.02 |
배열을 객체로, 객체를 배열로 (0) | 2020.10.15 |
댓글