如何关注Chrome上的标签?

时间:2016-11-03 22:16:11

标签: javascript jquery google-chrome

所以我正在制作一个通知脚本,我想知道在点击通知后是否有办法聚焦到标签页。

if (window.Notification.permission !== "granted"){
     window.Notification.requestPermission();
     return;
 }
 var notification = new window.Notification(msg.p.name, {
                    icon: 'https://cdn4.iconfinder.com/data/icons/chat-icons-3-1/512/notificacionn.png',
                    body: html,
                });
notification.onclick = function () {
                    ...
                    //here i want to focus into the tab
                    notification.close();
                };

0 个答案:

没有答案