通知事件
Notification API 規範支援通知可以觸發的 2 個事件。
click
事件。
單擊通知正文(不包括結束 X 和通知配置按鈕)時將執行此事件。
例:
notification.onclick = function(event) {
console.debug("you click me and this is my event object: ", event);
}
error
事件
每當出現錯誤時,通知都會觸發此事件,例如無法顯示
notification.onerror = function(event) {
console.debug("There was an error: ", event);
}