CSSRuleList:length 属性
Baseline
Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2015年7月.
CSSRuleList
接口的 length
属性返回列表中 CSSRule
对象的数量。
值
整型。
示例
以下示例将名为 myRules
的 CSSRuleList
中的项目数量打印到控制台。
js
let myRules = document.styleSheets[0].cssRules;
console.log(myRules.length);
规范
Specification |
---|
CSS Object Model (CSSOM)> # dom-cssrulelist-length> |
浏览器兼容性
Loading…