关闭通知

你可以使用 .close() 方法关闭通知。

let notification = new Notification(title, options);
// do some work, then close the notification
notification.close()

你可以利用 setTimeout 功能在将来的某个时间自动关闭通知。

let notification = new Notification(title, options);
setTimeout(() => {
    notification.close()
}, 4000);

上面的代码将生成一个通知,并在 4 秒后关闭它。