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.

StyleSheet.parentStyleSheet

概要

対象のスタイルシートを含む親スタイルシートが存在する場合は、それを返します。

構文

parentStyleSheetObj = stylesheet.parentStyleSheet

注記

対象スタイルシートがトップレベルのスタイルシートの場合、または対象スタイルシートがインクルードをサポートしていない場合、戻り値は null となります。

var stylesheet = document.styleSheets[0]; // 文書中の最初のスタイルシート


// 親スタイルシートが存在する場合はそれを、
// 無ければ自身への参照を変数 sheet に代入しています。
if (stylesheet.parentStyleSheet) {
  sheet = stylesheet.parentStyleSheet;
} else {
  sheet = stylesheet;
}

仕様書

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

タグ: 
 このページの貢献者: jsx, ethertank
 最終更新者: jsx,