Fennec 选项卡打开事件
如何监听 fennec 中的选项卡打开事件? gBrowser
对象不存在,我能找到的最接近它的是 Browser
对象,但它不允许我将侦听器附加到它。
How do I listen for a tab open event in fennec? The gBrowser
object doesn't exist and the closest thing to it I could find was the Browser
object, but it doesn't let me attach listeners to it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 https://wiki.mozilla.org/Mobile/Fennec/CodeSnippets
Browser
对象会触发一些特定于选项卡的事件。您可以使用这些事件来监视选项卡浏览器生命周期:TabOpen、TabSelect 和 TabClose。以下是连接事件侦听器的示例:from https://wiki.mozilla.org/Mobile/Fennec/CodeSnippets
The
Browser
object fires a few Tab-specific events. You can use these events to monitor tab browser lifecycle: TabOpen, TabSelect, and TabClose. Here's an example of hooking up listeners for the events: