ServiceWorkerGlobalScope.onnotificationclose property is an event handler called whenever the notificationclose event is dispatched on the ServiceWorkerGlobalScope object, that is when a user closes a displayed notification spawned by ServiceWorkerRegistration.showNotification() .

Notifications created on the main thread or in workers which aren't service workers using the Notification() constructor will instead receive a close event on the Notification 对象自身。

注意 : Trying to create a notification inside the ServiceWorkerGlobalScope 使用 Notification() constructor will throw an error.

句法

ServiceWorkerGlobalScope.onnotificationclose = function(NotificationEvent) { ... };
ServiceWorkerGlobalScope.addEventListener('notificationclose', function(NotificationEvent) { ... });
					

范例

//Inside a service worker.
self.onnotificationclose = function(event) {
  console.log('On notification close: ', event.notification.tag);
};
					

规范

规范 状态 注释
Notifications API
The definition of 'onnotificationclick' in that specification.
实时标准 Initial definition. This property is specified on the Notifications_API even though it's part of ServiceWorkerGlobalScope .

浏览器兼容性

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request. 更新 GitHub 上的兼容性数据
桌面 移动
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
onnotificationclose Chrome 40 Edge ≤79 Firefox 44 注意事项
44 注意事项
Extended Support Releases (ESR) before Firefox 78 ESR do not support service workers and the Push API.
IE 不支持 No Opera 24 Safari 11.1 WebView Android 40 Chrome Android 40 Firefox Android 44 Opera Android 24 Safari iOS 11.3 Samsung Internet Android 4.0

图例

完整支持

完整支持

不支持

不支持

实验。期望将来行为有所改变。

实验。期望将来行为有所改变。

见实现注意事项。

元数据

  • 最后修改: