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.onappinstalled

我们的志愿者还没有将这篇文章翻译为 中文 (简体)加入我们帮助完成翻译!

The onappinstalled attribute of the Window object serves as an event handler for the appinstalled event, which is dispatched once the web application is successfully installed as a progressive web app. The event that is fired is a "simple event" that implements the Event interface. 

Syntax

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

Example

window.onappinstalled = function(ev) { 
  console.log('The application was installed.');
};

Specifications

Specification Status Comment
Web App Manifest
The definition of 'Window.onappinstalled' in that specification.
Working Draft Initial specification.

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support ? 49 (49) [1] ? ? ?
Feature Android Android Webview Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile Chrome for Android
Basic support ? ? 49.0 (49) [1] ? ? ? ?

[1] This feature is behind a feature preference setting. In about:config, set dom.manifest.onappinstall to true.

See also

文档标签和贡献者

 此页面的贡献者: marcoscaceres, fscholz, teoli
 最后编辑者: marcoscaceres,