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

Nos bénévoles n'ont pas encore traduit cet article en Français. Aidez-nous à réaliser cette tâche !

Summary

The CSSRule.selectorText property gets the textual representation of the selector for the rule set. This is implemented in a readonly manner; to set stylesheet rules dynamically, see Using dynamic styling information.

Syntax

string = cssRule.selectorText 

Example

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

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

Notes

The implementation may have stripped out insignificant whitespace while parsing the selector.

Specification

Étiquettes et contributeurs liés au document

 Contributeurs à cette page : cuixiping, fscholz, teoli, miket, Sheppy, ethertank, Brettz9, Dria, JesseW
 Dernière mise à jour par : cuixiping,