登陆
90
浏览data-为前端开发者提供自定义的属性,这些属性集可以通过对象的dataset属性获取,不支持该属性的浏览器可以通过getAttribute方法获取:
<div data-author="david" data-time="2011-06-20" data-comment-num="10">...</div> div.dataset.commentNum; // 10
即:当没有合适的属性和元素时,自定义的 data 属性是能够存储页面或 App 的私有的自定义数据。
Custom data attributes are intended to store custom data private to the page or application, for which there are no more appropriate attributes or elements.