Chrome 桌面通知提供了一種在用戶桌面上向用戶顯示通知的方法,即使應用程式未開啟也是如此。這些通知可用於提醒用戶有新事件、訊息或其他更新。
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中文網其他相關文章!