让HTML5通知在延迟后消失?

时间:2016-01-14 23:06:20

标签: javascript html html5 html5-notifications

我想使用效果很好的HTML5通知。

问题在于它们永远不会消失。

如何设置延迟,之后HTML5通知会消失?

2 个答案:

答案 0 :(得分:6)

您只需拨打.close()方法:

var n = new Notification("Hello");
setTimeout(n.close.bind(n), 2000);

有关详细信息,请参阅here on MDN

答案 1 :(得分:1)

通知应该有一个内置的关闭按钮,没有?

<强> HTML

WHERE

<强> JS

<a href="#" onclick="return show()">Notify me!</a>