CSSRuleList: item() 方法
item()
方法是 CSSRuleList
接口的方法,它返回指定 index
位置的 CSSRule
对象,如果指定 index
不存在,则返回 null
。
语法
js
item(index)
参数
index
-
一个整数。
返回值
一个 CSSRule
。
示例
在以下示例中,我们假设 myRules
列表只有三个项目。
js
let myRules = document.styleSheets[0].cssRules;
console.log(myRules.item(0)); // Logs the first CSSRule item from this list
// Accessing non-existing items using this method will return null instead of undefined
console.log(myRules.item(5)); // null
console.log(myRules[5]); // undefined
规范
规范 |
---|
CSS 对象模型 (CSSOM) # dom-cssrulelist-item |
浏览器兼容性
BCD 表格仅在浏览器中加载