blob: 6ebd4e1d3230fffbee756eb2a912533f5099811c (
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
58
59
60
61
62
63
64
65
66
67
|
---
title: Document.applets
slug: Web/API/Document/applets
tags:
- API
- Document
- HTML DOM
- Апплеты
- Документ
translation_of: Web/API/Document/applets
---
<p>{{APIRef("DOM")}}</p>
<p><strong><code>applets</code></strong> возвращает массив апплетов, находящихся в документе.</p>
<div class="blockIndicator note">
<p><strong>Note</strong>: The {{htmlelement("applet")}} element was removed in <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1279218">Gecko 56</a> and <a href="https://bugs.chromium.org/p/chromium/issues/detail?id=470301">Chrome in late 2015</a>. Since then, calling <code>document.applets</code> in those browsers always returns an empty {{domxref("HTMLCollection")}}. Removal is being considered in <a href="https://bugs.webkit.org/show_bug.cgi?id=157926">WebKit</a>and <a href="https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/11946645/">Edge</a>.</p>
</div>
<h2 id="Syntax" name="Syntax">Синтаксис</h2>
<pre class="eval"><em>nodeList</em> = document.applets
</pre>
<p> </p>
<h3 id="Значение">Значение</h3>
<p>{{domxref("HTMLCollection")}}.</p>
<p> </p>
<h2 id="Example" name="Example">Пример</h2>
<pre class="eval">// Когда вы точно знаете, что вам нужен 2й апплет
my_java_app = document.applets[1];
</pre>
<h2 id="Спецификации">Спецификации</h2>
<table>
<thead>
<tr>
<th scope="col">Спецификация</th>
<th scope="col">Статус</th>
<th scope="col">Комментарий</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG', '#dom-document-applets', 'Document.applets')}}</td>
<td>{{ Spec2('HTML WHATWG') }}</td>
<td>Obsoleted.</td>
</tr>
<tr>
<td>{{SpecName('DOM2 HTML', 'html.html#ID-85113862', 'Document.applets')}}</td>
<td>{{ Spec2('DOM2 Events') }}</td>
<td>Initial definition.</td>
</tr>
</tbody>
</table>
<h2 id="Браузерная_поддержка">Браузерная поддержка</h2>
<p>{{Compat("api.Document.applets")}}</p>
<p> </p>
|