如何使用拉式通知显示桌面警报?

时间:2019-02-06 18:26:40

标签: google-chrome internet-explorer firefox notifications microsoft-edge

当浏览器关闭或打开时,如何显示来自chrome,firefox或IE的桌面通知?有没有办法使用拉通知方法来做到这一点?

1 个答案:

答案 0 :(得分:0)

您可以尝试检查Notification API。

Notifications API允许网页控制向最终用户显示系统通知。它们在顶级浏览上下文视口之外,因此即使用户切换了选项卡或移至其他应用程序也可以显示。该API旨在与不同平台上的现有通知系统兼容。

示例代码:

<!doctype html>
<head>
<script>
window.addEventListener('load', function () {
  // At first, let's check if we have permission for notification
  // If not, let's ask for it
  if (window.Notification && Notification.permission !== "granted") {
    Notification.requestPermission(function (status) {
      if (Notification.permission !== status) {
        Notification.permission = status;
      }
    });
  }

  var button = document.getElementsByTagName('button')[0];

  button.addEventListener('click', function () {
    // If the user agreed to get notified
    // Let's try to send ten notifications
    if (window.Notification && Notification.permission === "granted") {
      var i = 0;
      // Using an interval cause some browsers (including Firefox) are blocking notifications if there are too much in a certain time.
      var interval = window.setInterval(function () {
        // Thanks to the tag, we should only see the "Hi! 9" notification 
        var n = new Notification("Hi! " + i, {tag: 'soManyNotification'});
        if (i++ == 9) {
          window.clearInterval(interval);
        }
      }, 200);
    }

    // If the user hasn't told if he wants to be notified or not
    // Note: because of Chrome, we are not sure the permission property
    // is set, therefore it's unsafe to check for the "default" value.
    else if (window.Notification && Notification.permission !== "denied") {
      Notification.requestPermission(function (status) {
        // If the user said okay
        if (status === "granted") {
          var i = 0;
          // Using an interval cause some browsers (including Firefox) are blocking notifications if there are too much in a certain time.
          var interval = window.setInterval(function () {
            // Thanks to the tag, we should only see the "Hi! 9" notification 
            var n = new Notification("Hi! " + i, {tag: 'soManyNotification'});
            if (i++ == 9) {
              window.clearInterval(interval);
            }
          }, 200);
        }

        // Otherwise, we can fallback to a regular modal alert
        else {
          alert("Hi!");
        }
      });
    }

    // If the user refuses to get notified
    else {
      // We can fallback to a regular modal alert
      alert("Hi!");
    }
  });
});
</script>
</head>
<body>
<button>Notify me!</button>
</body>
</html>

参考文献:

(1)Notifications API

(2)Using the Notifications API

相关问题