Firefox 扩展 localStorage 事件
我正在制作一个 Firefox 扩展来确定何时从 localStorage 触发“存储”事件。
在 Firefox 3 中,我使用这一行将窗口中的存储事件绑定到扩展中的函数。
$(doc, doc).bind('storage', on_store());
这在 Firefox 3 中有效。但是,在 Firefox 4 中尝试时似乎没有收到事件。
I am making a Firefox extension to determine when a "storage" event is fired from the localStorage.
In Firefox 3, I have this line to bind the storage event in the window to a function in the extension.
$(doc, doc).bind('storage', on_store());
This works in Firefox 3. However, this does not seem to get the event when it is tried in Firefox 4.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
规范似乎建议
存储
事件将在窗口上触发(因此$(window).bind('storage', on_store)
是绑定它的正确方法)。The spec seems to suggest the
storage
event will fire on the window (so$(window).bind('storage', on_store)
is the correct way to bind it).