From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/web/api/document/applets/index.html | 66 ++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 files/ja/web/api/document/applets/index.html (limited to 'files/ja/web/api/document/applets') diff --git a/files/ja/web/api/document/applets/index.html b/files/ja/web/api/document/applets/index.html new file mode 100644 index 0000000000..744a5c723f --- /dev/null +++ b/files/ja/web/api/document/applets/index.html @@ -0,0 +1,66 @@ +--- +title: Document.applets +slug: Web/API/Document/applets +tags: + - API + - Deprecated + - Document + - HTML DOM + - Property + - Reference + - applets + - プロパティ +translation_of: Web/API/Document/applets +--- +
{{APIRef("DOM")}}{{deprecated_header}}
+ +

{{domxref("Document")}} インターフェイスの applets プロパティは、文書内のアプレットのリストを返します。

+ +
+

メモ: {{htmlelement("applet")}} 要素は Gecko 56 および 2015年後期の Chrome から削除されました。それ以来、これらのブラウザーで document.applets を呼び出しても空の {{domxref("HTMLCollection")}} しか返しません。 WebKit および Edge でも削除が検討されています。

+
+ +

構文

+ +
var nodeList = document.applets;
+
+ +

+ +

{{domxref("HTMLCollection")}}

+ +

+ +
// 2番目のアプレットが取得したいアプレットであると分かっている場合
+my_java_app = document.applets[1];
+
+ +

仕様書

+ + + + + + + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName('HTML WHATWG', '#dom-document-applets', 'Document.applets')}}{{ Spec2('HTML WHATWG') }}廃止
{{SpecName('DOM2 HTML', 'html.html#ID-85113862', 'Document.applets')}}{{ Spec2('DOM2 Events') }}初回定義
+ +

ブラウザーの対応

+ + + +

{{Compat("api.Document.applets")}}

-- cgit v1.2.3-54-g00ecf