>웹 프론트엔드 >JS 튜토리얼 >Chrome에서 데스크톱 알림을 표시하는 방법은 무엇입니까?

Chrome에서 데스크톱 알림을 표시하는 방법은 무엇입니까?

Patricia Arquette
Patricia Arquette원래의
2024-11-03 04:52:03583검색

How to Show Desktop Notifications in Chrome?

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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.