Document:styleSheets 属性
Document
接口的 styleSheets
只读属性返回一个 StyleSheetList
,其中包含显式链接到或嵌入文档中的样式表的 CSSStyleSheet
对象。
值
示例
js
function getStyleSheet(unique_title) {
for (const sheet of document.styleSheets) {
if (sheet.title === unique_title) {
return sheet;
}
}
}
规范
规范 |
---|
CSS 对象模型 (CSSOM) # dom-documentorshadowroot-stylesheets |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。