在我的样式表中,我定义了一些自定义引号 [https://developer.mozilla.org/en-US/docs/CSS/quotes],但是当我尝试使用 JavaScript 访问它们时,它给了我默认值,尽管它存在在实际的 CSS 中;任何想法将不胜感激:
>> document.getElementById('-my-widget-style')
<style id="-my-widget-style" type="text/css" media="all">...</style>
>> document.getElementById('-my-widget-style').innerHTML
" .-my-widget-wrapper #content {
quotes: "<<" ">>";
}
"
>> document.getElementById('content').style.quotes
""
>> $('#content').css('quotes')
""