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.

CSSStyleRule.selectorText

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

概述

CSSRule.selectorText 属性返回CSS规则的选择符文本,只读。动态设置CSS规则,请看 Using dynamic styling information.

语法

string = cssRule.selectorText 

例子

// for cssrule: body { background-color: darkblue; }
var stylesheet = document.styleSheets[0];

alert(stylesheet.cssRules[0].selectorText); // body

说明

浏览器解析选择符的时候可能会剔除不必要的空白字符

标准

文档标签和贡献者

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