Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Window.oninstall

この記事は編集レビューを必要としています。ぜひご協力ください

Window インターフェースの oninstall プロパティは、ページがウェブアプリとして成功裏にインストールされるたびに発生する install イベントのイベントハンドラーを表します。

構文

window.oninstall = function(event) { ... };

function handleInstall(ev){
  console.log('Thank you for installing our app!');
}

window.oninstall = handleInstall;

仕様

仕様 ステータス コメント
Web App Manifest
Window.oninstall の定義
草案 初期定義。

ブラウザ実装状況

機能 Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
基本サポート ? 49 (49) ? ? ?
機能 Android Android Webview Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile Chrome for Android
基本サポート ? ? 49.0 (49) ? ? ? ?

関連項目

ドキュメントのタグと貢献者

 このページの貢献者: YuichiNukiyama
 最終更新者: YuichiNukiyama,