Chrome에서 데스크톱 알림을 구현하는 방법은 무엇입니까?
최신 브라우저는 데스크톱 알림과 서비스 작업자 알림이라는 두 가지 알림 유형을 제공합니다. 데스크톱 알림은 트리거하기가 더 간단하며 페이지가 열려 있는 동안에만 작동하고 짧은 간격 후에 사라질 수 있습니다.
두 유형 모두에 대한 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!