通知事件

Notification API 规范支持通知可以触发的 2 个事件。

  1. click 事件。

单击通知正文(不包括结束 X 和通知配置按钮)时将运行此事件。

例:

notification.onclick = function(event) {
    console.debug("you click me and this is my event object: ", event);
}
  1. error 事件

每当出现错误时,通知都会触发此事件,例如无法显示

notification.onerror = function(event) {
    console.debug("There was an error: ", event);
}