检测对通知的支持

时间:2016-11-23 15:54:44

标签: javascript html5 notifications

我想在不抛出错误的情况下检测对HTML5 Notifications API的支持。我希望能够同步检测支持,尽管使用promises或回调会很好。

1 个答案:

答案 0 :(得分:3)

我认为你要找的是window.Notification。

if (window.Notification) {
  alert('support');
} else {
  alert('no support');
}

以下是您想知道的最新浏览器支持列表: http://caniuse.com/#search=Notification