From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../web/api/window/appinstalled_event/index.html | 85 ++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 files/ja/web/api/window/appinstalled_event/index.html (limited to 'files/ja/web/api/window/appinstalled_event') diff --git a/files/ja/web/api/window/appinstalled_event/index.html b/files/ja/web/api/window/appinstalled_event/index.html new file mode 100644 index 0000000000..3a47b5c67e --- /dev/null +++ b/files/ja/web/api/window/appinstalled_event/index.html @@ -0,0 +1,85 @@ +--- +title: 'Window: appinstalled イベント' +slug: Web/API/Window/appinstalled_event +tags: + - API + - Event + - Manifest + - Reference + - Web + - appinstalled + - events + - web manifest + - ウェブマニフェスト + - マニフェスト +translation_of: Web/API/Window/appinstalled_event +--- +
{{APIRef}}
+ +
+

appinstalledWeb Manifest API のイベントで、ブラウザーがあるページをアプリケーションとして成功裏にインストールしたとき発行されます。

+
+ + + + + + + + + + + + + + + + + + + + +
バブリングなし
キャンセル不可
インターフェイス{{domxref("Event")}}
イベントハンドラー{{domxref("Window/onappinstalled", "onappinstalled")}}
+ +

+ +

appinstalled イベントは {{domxref("EventTarget/addEventListener", "addEventListener")}} メソッドで使用することができます。

+ +
window.addEventListener('appinstalled', function() {
+  console.log('アプリをインストールしてくれてありがとう!');
+});
+ +

または {{domxref("Window/onappinstalled", "onappinstalled")}} イベントハンドラープロパティを使用してください。

+ +
window.onappinstalled = function() {
+  console.log('アプリをインストールしてくれてありがとう!');
+};
+ +

仕様書

+ + + + + + + + + + + + +
仕様書状態
{{SpecName('Manifest', '#dfn-appinstalled', 'appinstalled')}}{{Spec2('Manifest')}}
+ +

ブラウザーの対応

+ + + +

{{Compat("api.Window.onappinstalled")}}

+ +

関連情報

+ + -- cgit v1.2.3-54-g00ecf