Firefox 扩展 localStorage 事件

发布于 2024-10-12 16:52:36 字数 219 浏览 4 评论 0原文

我正在制作一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青衫儰鉨ミ守葔 2024-10-19 16:52:36

规范似乎建议存储事件将在窗口上触发(因此 $(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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文