blob: e1b83bb8409822d1df4c754b9d77ebeca093cfa6 (
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
|
---
title: Document.lastStyleSheetSet
slug: Web/API/Document/lastStyleSheetSet
tags:
- API
- CSSOM
- DOM
- 层叠样式表
- 引用
- 文档
translation_of: Web/API/Document/lastStyleSheetSet
---
<div>{{APIRef("DOM")}}{{gecko_minversion_header("1.9")}}{{obsolete_header}}</div>
<p><strong><code>Document.lastStyleSheetSet</code></strong> 返回最后一个启用的样式表集合。当 {{domxref("document.selectedStyleSheetSet")}} 属性发生变化时,这个属性的值就会随之发生变化。</p>
<h2 id="语法">语法</h2>
<pre class="syntaxbox notranslate">var <var>lastStyleSheetSet</var> = <var>document</var>.lastStyleSheetSet
</pre>
<p>返回时, <var>lastStyleSheetSet</var> 指示最近设置的样式表。 如果当前样式表集尚未通过设置更改 {{domxref("document.selectedStyleSheetSet")}}, 则返回值为 <code>null</code>。</p>
<div class="note"><strong>注意:</strong> 当{{domxref("document.enableStyleSheetsForSet()")}} 被执行时,该值不会该变。</div>
<h2 id="示例">示例</h2>
<pre class="brush: js notranslate">let lastSheetSet = document.lastStyleSheetSet;
if (!lastSheetSet) {
lastSheetSet = 'Style sheet not yet changed';
}
else {
console.log('The last style sheet set is: ' + lastSheetSet);
}
</pre>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<div class="hidden">此页面上的兼容性表单是根据结构化数据自动生成的。 如果您想提供其他数据,请查看 <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> 并向我们发送请求。</div>
<p>{{Compat("api.Document.lastStyleSheetSet")}}</p>
<h2 id="相关链接">相关链接</h2>
<ul>
<li>{{domxref("document.preferredStyleSheetSet")}}</li>
<li>{{domxref("document.selectedStyleSheetSet")}}</li>
<li>{{domxref("document.styleSheetSets")}}</li>
<li>{{domxref("document.enableStyleSheetsForSet()")}}</li>
</ul>
|