Chrome 桌面通知解釋
現代瀏覽器中的桌面通知可以在螢幕上顯示簡單的訊息。當您想要提醒或通知用戶,即使他們沒有與您的網站互動時,它們特別有用。
有兩種類型的通知:
桌面通知:
Service Worker 通知:
存取桌面通知API:
範例實作:
<code class="js">document.addEventListener('DOMContentLoaded', function() { if (!Notification) alert('Desktop notifications not available in your browser.'); if (Notification.permission !== 'granted') Notification.requestPermission(); }); function notifyMe() { if (Notification.permission === 'granted') { var notification = new Notification('Notification title', { icon: 'icon.png', body: 'Hey there! You\'ve been notified!', }); notification.onclick = function() { window.open('http://example.com'); }; } else Notification.requestPermission(); }</code>
<code class="html"><button onclick="notifyMe()">Notify me!</button></code>
以上是Chrome 中的桌面通知如何運作?的詳細內容。更多資訊請關注PHP中文網其他相關文章!