如何在 Chrome 中实现桌面通知?
现代浏览器提供两种通知类型:桌面通知和 Service Worker 通知。桌面通知更容易触发,仅在页面打开时起作用,并且可能会在很短的时间间隔后消失。
两种类型的 API 调用采用相同的参数(操作除外,桌面通知无法使用这些操作)。
Chrome 桌面通知示例
以下代码片段演示了 Chrome 中的桌面通知:
<code class="javascript">// Request permission on page load document.addEventListener('DOMContentLoaded', function() { if (!Notification) { alert('Desktop notifications not available in your browser. Try Chromium.'); return; } if (Notification.permission !== 'granted') Notification.requestPermission(); }); // Function to display a notification function notifyMe() { 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'); }; } }</code>
触发通知的 HTML
<code class="html"><button onclick="notifyMe()">Notify me!</button></code>
以上是如何在 Chrome 中显示桌面通知?的详细内容。更多信息请关注PHP中文网其他相关文章!