标签: javascript jquery firefox-addon local-storage firefox4
我正在制作Firefox扩展程序,以确定何时从localStorage触发“存储”事件。
在Firefox 3中,我有这一行将窗口中的存储事件绑定到扩展中的函数。
$(doc, doc).bind('storage', on_store());
这适用于Firefox 3.但是,在Firefox 4中尝试时,这似乎不会发生。
答案 0 :(得分:2)
The spec似乎暗示storage事件将在窗口中触发(因此$(window).bind('storage', on_store)是绑定它的正确方法。)
storage
$(window).bind('storage', on_store)