Chrome デスクトップ通知は、アプリケーションが開いていない場合でも、ユーザーのデスクトップに通知を表示する方法を提供します。これらの通知は、新しいイベント、メッセージ、その他の更新をユーザーに警告するために使用できます。
Chrome デスクトップ通知 API は、いくつかのパラメータを受け取ります。
次の例は、 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 中国語 Web サイトの他の関連記事を参照してください。