πΒ Reference
πΒ Index
data-*
μμ±μ νμ€μ΄ μλ μμ±μ΄λ μΆκ°μ μΈ DOM μμ±, Node.setUserData()
κ³Ό κ°μ λ€λ₯Έ μ‘°μμ νμ§ μκ³ λ μλ―Έλ‘ μ νμ€ HTML μμμ μΆκ° μ 보λ₯Ό μ μ₯ν μ μλλ‘ ν΄μ€λ€.data-
λ‘ μμνλ μμ±μ μ¬μ© ν μ μλ€.<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"