Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

CSSRuleList

这篇翻译不完整。请帮忙从英语翻译这篇文章

概述

CSSRuleList是一个数组对象包含着一个有序的CSSRule对象的集合。

描述

每一个CSSRule可以通过rules.item(index)的形式访问, 或者rules[index]。 这里的rules是一个实现了CSSRuleList接口的对象, index是一个基于0开始的,顺序与CSS样式表中的顺序是一致的。样式对象的个数是通过rules.length表达。

实例

// 得到第一个CSS样式表中的第一个规则
var first_rule = document.styleSheets[0].cssRules[0];

相关链接

CSSRuleList 使用

在CSS对象模型中,有多个属性的返回值是CSSRuleList。它们是:

规范

文档标签和贡献者

 此页面的贡献者: Twiknight, helloguangxue
 最后编辑者: Twiknight,