How to get focus to a Chrome tab which created desktop notification?

后端 未结 5 1755
北荒
北荒 2020-12-07 14:50

I would like to implement same functionality as Gmail has nowadays. When new email arrives or new chat comes, notification popup appears and if you click it, the tab with Gm

5条回答
  •  [愿得一人]
    2020-12-07 15:09

    It should be this.close() rather than this.cancel(), like this:

    var n = window.webkitNotifications.createNotification('ico.gif','Title', 'Text');
    n.onclick = function(x) { window.focus(); this.cancel(); };
    n.show();
    

提交回复
热议问题