我正在寻找的 javascript 库和代码,可以模拟 localStorage
的浏览器,没有本机支持。
基本上,我想使用 localStorage
编写我的网站来存储数据,并且知道它仍然可以在不支持它的浏览器上工作。这意味着库将检测 window.localStorage
是否存在,如果存在则使用它。如果它不存在,那么它将通过在 window.localStorage
名称空间中创建自己的实现来创建某种本地存储的后备方法。
到目前为止,我已经找到了这些解决方案:
I understand that Flash and Silverlight can be used for local storage as well, but haven't found anything on using them as a fallback for standard HTML5 localStorage. Perhaps Google Gears has this capability too?
请共享您找到的任何相关库、资源或代码片段!我对纯 javascript 或基于 jquery 的解决方案特别感兴趣,但我猜这不太可能。