有哪些方法可以从网络应用程序显示桌面通知?

发布于 2024-11-09 06:28:10 字数 60 浏览 0 评论 0原文

我想做的是最好显示一个类似烤面包机的通知,但任何将更新“推送”到桌面的方法都很有趣。

谢谢

What I would like to do is show a toaster like notification preferably but any method of "pushing" updates to the desktop is interesting.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

清秋悲枫 2024-11-16 06:28:10

以下是 Chrome、Firefox、Opera 和 Safari 桌面通知的工作示例,复制自 Chrome桌面通知示例
在 JSBin 上实时尝试。

// request permission on page load
document.addEventListener('DOMContentLoaded', function () {
  if (Notification.permission !== "granted")
    Notification.requestPermission();
});

function notifyMe() {
  if (!Notification) {
    alert('Desktop notifications not available in your browser. Try Chromium.'); 
    return;
  }

  if (Notification.permission !== "granted")
    Notification.requestPermission();
  else {
    var notification = new Notification('Notification title', {
      icon: 'http://cdn.sstatic.net/stackexchange/img/logos/so/so-icon.png',
      body: "Hey there! You've been notified!",
    });

    notification.onclick = function () {
      window.open("https://stackoverflow.com/a/13328397/1269037");      
    };

  }

}
<button onclick="notifyMe()">Notify me!</button>

有关其工作原理的更多信息,请参阅我对 Chrome 桌面通知示例的回答。

Below is a working example of desktop notifications for Chrome, Firefox, Opera and Safari, copied from Chrome desktop notification example.
Try it live on JSBin.

// request permission on page load
document.addEventListener('DOMContentLoaded', function () {
  if (Notification.permission !== "granted")
    Notification.requestPermission();
});

function notifyMe() {
  if (!Notification) {
    alert('Desktop notifications not available in your browser. Try Chromium.'); 
    return;
  }

  if (Notification.permission !== "granted")
    Notification.requestPermission();
  else {
    var notification = new Notification('Notification title', {
      icon: 'http://cdn.sstatic.net/stackexchange/img/logos/so/so-icon.png',
      body: "Hey there! You've been notified!",
    });

    notification.onclick = function () {
      window.open("https://stackoverflow.com/a/13328397/1269037");      
    };

  }

}
<button onclick="notifyMe()">Notify me!</button>

More information about how this works in my answer to Chrome desktop notification example.

谁把谁当真 2024-11-16 06:28:10

在 Chrome 上,您可以使用桌面通知来实现类似的功能。例如,请参阅 Chrome 桌面通知示例

如果您的用户在他们的计算机上安装了growl,您应该查看growl 开发者页面

On Chrome, you can achieve something like this using Desktop notification. See Chrome desktop notification example for example.

If your users have growl installed on their machine you should check out growl developer page

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文