codecamp

window属性:onbeforeinstallprompt

onbeforeinstallprompt属性

该Window.onbeforeinstallprompt属性是处理beforeinstallprompt的事件处理程序,当用户即将被提示“安装”web应用程序时,该处理程序将在设备上调度。其相关联的事件可以保存以供稍后用于在更适合的时间提示用户。 

onbeforeinstallprompt属性语法

window.addEventListener(“beforeinstallprompt”,function(event){...});
window.onbeforeinstallprompt = function(event){...};

onbeforeinstallprompt属性示例

以下示例使用beforeinstallprompt事件处理程序可以使安装按钮可操作,方法是,使用click处理程序中的事件:

window.addEventListener("beforeinstallprompt", function(e) {
  e.preventDefault(); // Prevents immediate prompt display

  // Shows prompt after a user clicks an "install" button
  installButton.addEventListener("click", function(e) {
    e.prompt();
  });

  installButton.hidden = false; // Make button operable
});

浏览器兼容性

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

  • 电脑端
特征Chrome
Firefox(Gecko)Internet Explorer
Opera
Safari
基本支持支持:45不支持不支持支持:32不支持 
  • 移动端
特征Android WebviewChrome for AndroidFirefox Mobile (Gecko)IE MobileOpera MobileSafari MobileChrome for Android
基本支持支持:45支持:45不支持不支持支持:32不支持支持:45.0

规范

规范状态注释
Web App Manifest
该规范中'Window.onbeforeinstallprompt'的定义。
Working Draft
初始规格
window属性:onauxclick
window属性:onbeforeprint
温馨提示
下载编程狮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; }