Firefox 扩展:gBrowser 未定义
这是一个 Firefox 扩展,一切都运行良好。
但... 由于这一行,我不断在控制台中收到令人恼火的“gBrowser 未定义”错误:
gBrowser.selectedTab = gBrowser.addTab("chrome://ire_TPB/content/options.html");
我想做的当然是打开一个新选项卡并加载该本地 html 页面。
我做错了什么?
谢谢!
赢得 7 大招
FF 7.0
This is a Firefox extension and everything is working pretty good.
BUT...
I keep getting the irritating "gBrowser is not defined" error in the console because of this line:
gBrowser.selectedTab = gBrowser.addTab("chrome://ire_TPB/content/options.html");
What I am trying to do of course is open a new tab and load that local html page.
What am I doing wrong?
Thanks!
Win 7 ult
FF 7.0
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 Mozilla 文档:“如果未定义 gBrowser,则您的代码要么无法运行在浏览器窗口范围内或运行得太早,您只能在浏览器窗口完全加载后才能访问 gBrowser。”
From Mozilla Documentation: "If gBrowser isn't defined your code is either not running in the scope of the browser window or running too early. You can access gBrowser only after the browser window is fully loaded."