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プロパティは、この規則集合のセレクターのテキスト表現を取得します。これは、読み取り専用で実装されています。スタイルシート規則を動的に設定するには、 動的なスタイル情報の利用 を参照してください。

構文

string = cssRule.selectorText

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

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

補記

実装は、セレクターの解析中に無意味な空白を取り除くことがあります。

仕様書

ドキュメントのタグと貢献者

 このページの貢献者: Marsf
 最終更新者: Marsf,