codecamp

window属性:onappinstalled

onappinstalled属性

Window对象的onappinstalled属性作为appinstalled事件的事件处理程序,一旦将Web应用程序成功安装为渐进式Web应用程序,该事件就会被分派。被激发的事件是一个实现Event接口的“simple event” 。 

onappinstalled属性语法

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

onappinstalled属性示例

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

规范

规范状态注释
Web App Manifest
该规范中'Window.onappinstalled'的定义。
Working Draft
初始规范

浏览器兼容性

我们正在将兼容性数据转换为机器可读的JSON格式。

  • 电脑端
特征Chrome
Firefox(Gecko)Internet Explorer
Opera
Safari(WebKit)
基本支持支持:49[1]? 
  • 移动端

特征AndroidAndroid WebviewFirefox Mobile (Gecko)IE MobileOpera MobileSafari MobileChrome for Android
基本支持??支持49.0[1]????

注释:

[1]该功能位于功能首选项设置的后面。在about:config中,将dom.manifest.onappinstall设置为true。

window属性:onanimationiteration
window属性:onauxclick
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Fetch API官方文档指南

Fetch API方法

WindowOrWorkerGlobalScope执行者:window

window属性

WindowOrWorkerGlobalScope执行者:WorkerGlobalScope

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }