我正在使用Javascript Notification API和Chrome 38版本。我的通知选项如下:
var notification = new Notification(title,options);
var notificationOptions = {
body: "... my datas",
icon: "/xx/xx/notification/gift.png",
dir : "ltr",
requireInteraction:true
};
前3个通知是有效的,但在3个通知之后,其他通知不显示。单击系统任务栏上的通知图标时,会看到最新的通知图标。 如何始终在系统托盘顶部而不是系统顶部显示新通知?