#elem {
-myCustom: 99;
}
或者
#elem {
--myCustom: 99;
}
我在网上的例子中看到了上述两种情况。两者有什么区别?
尝试在 JavaScript 中访问自定义属性返回 null..
#elem {
-myCustom: 99;
}
<div id="elem">some text</div>
elem = document.getElementById("elem");
style= window.getComputedStyle(elem);
value = style.getPropertyValue('-myCustom');
alert(value);