Chrome 桌面通知提供了一种在用户桌面上向用户显示通知的方法,即使应用程序未打开也是如此。这些通知可用于提醒用户有新事件、消息或其他更新。
Chrome 桌面通知 API 需要几个参数:
以下示例显示如何使用Chrome桌面通知API:
if (Notification.permission !== 'granted') Notification.requestPermission(); else { var notification = new Notification('Notification title', { icon: 'http://cdn.sstatic.net/stackexchange/img/logos/so/so-icon.png', body: 'Hey there! You\'ve been notified!', }); notification.onclick = function() { window.open('http://stackoverflow.com/a/13328397/1269037'); };
以上是如何有效实施 Chrome 桌面通知?的详细内容。更多信息请关注PHP中文网其他相关文章!