--- title: Document.selectedStyleSheetSet slug: Web/API/Document/selectedStyleSheetSet tags: - API - CSSOM - DOM - Property - Reference - Stylesheets translation_of: Web/API/Document/selectedStyleSheetSet ---
selectedStyleSheetSet
プロパティは、現在使用中のスタイルシートセットの名前を示します。
currentStyleSheetSet = document.selectedStyleSheetSet; document.selectedStyleSheet = newStyleSheetSet;
返値である currentStyleSheetSet
は、現在使用中のスタイルシートセットの名前を示します。このプロパティを使用して、現在のスタイルシートセットを設定することもできます。
このプロパティに値を設定することは、 {{domxref("document.enableStyleSheetsForSet()")}} を currentStyleSheetSet
の値で呼び出し、 lastStyleSheetSet
の値をその値に設定することに等価です。
disabled
属性を変更すると、この属性の値に影響します。console.log('Current style sheet set: ' + document.selectedStyleSheetSet); document.selectedStyleSheetSet = 'Some other style sheet';
{{Compat("api.Document.selectedStyleSheetSet")}}