我正在创建一个带有桌面通知的Chrome扩展程序,evrything很好但是对于每个记录2通知显示我使用标签prvent问题弹出窗口显示通知但我的音乐功能播放两次。
function sender()
{
console.log('ww = ' + list );
for (var i = 0; i < list.length; i++) {
console.log('lenght = ' + list.length );
if (list[i].sent == false)
{
console.log('again');
music();
list[i].sent=true;
var link = '#'+list[i].key;
var notification = new Notification(
list[i].title, {
icon: 'ico.ico',
body: ""+ list[i].key,
tag:"uniqueTag"
});
notification.onclick = function () {
window.open(link);
};
console.log('ddd = ' + list[i].sent);
}
}
}