<button onclick="notifyMe()">Notify me!</button>
// Notifications API 允许网页控制向最终用户显示系统通知 —这些都在顶级浏览上下文视口之外,因此即使用户已经切换标签页或移动到不同的应用程序,也可以显示。该 API 被设计成与不同平台上的现有通知系统兼容。
function notifyMe() {
  const notification = new Notification("Hi there!");
}

Last Updated:
Contributors: pengrengui