在两个 XUL 应用程序之间共享信息
我目前正在为 Firefox 开发工具栏和侧边栏。我想要两个共享信息,但在加载 .js 文件时我希望它们共享,它被加载两次并且有两个实例而不是一个。
如何让工具栏和侧边栏在单个 javascript 文件中访问相同的信息或全局变量?
提前致谢。
I am currently developing a toolbar and sidebar for firefox. I want to have the two share information, but upon loading the .js file I want them to share, it is loaded twice and has two instances instead of one.
How can I get the toolbar and the sidebar access the same information or global variables in a single javascript file?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能想查看 localStorage :
https://developer.mozilla.org/en/ DOM/Storage#localStorage
我将它用于一些 Web XUL 应用程序。非常容易使用。
You might want to look at localStorage :
https://developer.mozilla.org/en/DOM/Storage#localStorage
I use it for some web XUL applications. Quite easy to use.