只读 CSSStyleSheet property cssRules returns a live CSSRuleList which provides a real-time, up-to-date list of every CSS rule which comprises the stylesheet. Each item in the list is a CSSRule defining a single rule.

句法

var rules = cssStyleSheet.cssRules;
					

A live-updating CSSRuleList containing each of the CSS rules making up the stylesheet. Each entry in the rule list is a CSSRule object describing one rule making up the stylesheet.

范例

Individual rules within the stylesheet can then be accessed by index:

let ruleList = document.styleSheets[0].cssRules;
for (let i=0; i < ruleList.length; i++) {
  processRule(ruleList[i]);
}
					

Rules can also be accessed using for...of :

let ruleList = document.styleSheets[0].cssRules;
for (let rule of ruleList) {
  processRule(rule);
}
					

However, because CSSRule is not a proper array, you can't use forEach() .

规范

规范 状态 注释
CSS Object Model (CSSOM)
The definition of 'CSSStyleSheet.cssRules' in that specification.
工作草案

浏览器兼容性

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request. 更新 GitHub 上的兼容性数据
桌面 移动
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
cssRules Chrome Yes Edge 12 Firefox 1 IE 9 Opera Yes Safari Yes WebView Android Yes Chrome Android Yes Firefox Android 4 Opera Android Yes Safari iOS Yes Samsung Internet Android Yes

图例

完整支持

完整支持

另请参阅

元数据

  • 最后修改: