blob: 8eb62f32587dfab63aae241c31500153344b932b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
---
title: Document.styleSheetSets
slug: Web/API/Document/styleSheetSets
tags:
- API
- CSSOM
- DOM
- Property
- Reference
- Stylesheets
translation_of: Web/API/Document/styleSheetSets
---
<div>{{APIRef("DOM")}}{{gecko_minversion_header("1.9")}}{{obsolete_header}}</div>
<p><strong><code>styleSheetSets</code></strong> プロパティは読み取り専用で、<span class="seosummary">現在有効なすべてのスタイルシートセットの生きたリストを返します。</span></p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox notranslate">var <var>sets</var> = <var>document</var>.styleSheetSets;
</pre>
<p>返値である <code>sets</code> は、利用可能なスタイルシートセットのリストです。</p>
<h2 id="Example" name="Example">例</h2>
<p>以下のようなコードで、 "sheetList" という ID を持った{{HTMLElement("ul")}} (リスト) 要素に対し、すべての有効なスタイルシートセットの名前を挙げることができます。</p>
<pre class="brush:js notranslate">let list = document.getElementById('sheetList');
let sheets = document.styleSheetSets;
list.innerHTML = '';
for (let i = 0; i < sheets.length; i++) {
let item = document.createElement('li');
item.innerHTML = sheets[i];
list.appendChild(item);
}</pre>
<h2 id="Notes" name="Notes">注</h2>
<p>有効なスタイルシートセットのリストは、その文書に有効なすべてのスタイルシートを {{domxref("document.styleSheets")}} 属性で並べられている順に列挙し、題名を持つそれぞれのスタイルシートの <code>title</code> をリストに追加することによって構築されます。重複するものは (大文字小文字を区別する比較を使用して) リストから削除されます。</p>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("api.Document.styleSheetSets")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{domxref("Stylesheet")}}</li>
<li>{{domxref("document.styleSheets")}}</li>
<li>{{domxref("document.lastStyleSheetSet")}}</li>
<li>{{domxref("document.preferredStyleSheetSet")}}</li>
<li>{{domxref("document.selectedStyleSheetSet")}}</li>
<li>{{domxref("document.enableStyleSheetsForSet()")}}</li>
</ul>
|