How to get focus to a Chrome tab which created desktop notification?(如何将焦点放在创建桌面通知的 Chrome 选项卡上?)
问题描述
我想实现与现在的 Gmail 相同的功能.当新电子邮件到达或新聊天出现时,会出现通知弹出窗口,如果您单击它,Gmail 的标签就会成为焦点.
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 Gmail gets focussed.
我有这个代码:
var n = window.webkitNotifications.createNotification('ico.gif', 'Title', 'Text');
n.onclick = function(x) { this.cancel(); };
n.show();
当我单击通知时,它会消失.现在我需要向 onclick 函数添加一些代码,以调出并聚焦创建此通知的页面.我知道这是可能的,因为 GMail 做得很好.但我没有成功调查 Gmail 来源(它们被最小化和混淆了).
When I click notification it makes it just disappear. Now I need to add some code to onclick function to bring up and focus page that created this notification. I know it is possible because GMail does it very well. But I didn't succeed in looking into Gmail sources (they are minimalized and obfuscated).
有人知道怎么做吗?
推荐答案
你可以把 window.focus() 放到谷歌浏览器中.单击时它将聚焦到该窗口.
You can just place window.focus() in Google Chrome. It will focus to that window when clicked.
var n = window.webkitNotifications.createNotification('ico.gif', 'Title', 'Text');
n.onclick = function(x) { window.focus(); this.close(); };
n.show();
我在 Gmail 中打开了检查器,添加了上面的代码,移动到另一个选项卡,然后运行它.通知出现了,点击后,我又回到了 Gmail.
I opened the inspector in Gmail, added the above code, moved to a different tab, and ran it. The notification appeared and once clicked, it brought me back to Gmail.
这篇关于如何将焦点放在创建桌面通知的 Chrome 选项卡上?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将焦点放在创建桌面通知的 Chrome 选项卡上?
基础教程推荐
- 响应更改 div 大小保持纵横比 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 动态更新多个选择框 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01