Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何data使用 Modernizr 检测浏览器是否支持 HTML5 属性?
data
测试元素是否具有属性dataset。
dataset
Modernizr.addTest('data', function () { var elem = document.createElement('div'); return !!elem.dataset; });