所以我正在制作一个通知脚本,我想知道在点击通知后是否有办法聚焦到标签页。
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();
};