--- title: Document.applets slug: Web/API/Document/applets tags: - API - Document - HTML DOM - Апплеты - Документ translation_of: Web/API/Document/applets ---
{{APIRef("DOM")}}
applets
возвращает массив апплетов, находящихся в документе.
Note: The {{htmlelement("applet")}} element was removed in Gecko 56 and Chrome in late 2015. Since then, calling document.applets
in those browsers always returns an empty {{domxref("HTMLCollection")}}. Removal is being considered in WebKitand Edge.
nodeList = document.applets
{{domxref("HTMLCollection")}}.
// Когда вы точно знаете, что вам нужен 2й апплет my_java_app = document.applets[1];
Спецификация | Статус | Комментарий |
---|---|---|
{{SpecName('HTML WHATWG', '#dom-document-applets', 'Document.applets')}} | {{ Spec2('HTML WHATWG') }} | Obsoleted. |
{{SpecName('DOM2 HTML', 'html.html#ID-85113862', 'Document.applets')}} | {{ Spec2('DOM2 Events') }} | Initial definition. |
{{Compat("api.Document.applets")}}