HTML5 中的 localStorage 如何工作?
HTML5 中的 localStorage
如何工作?我搜索了每个地方(甚至在 SO 中)以找到 localStorage 的实际内部逻辑,但我最终访问了一些使用 localStorage 的示例。我没有找到任何有用的答案来回答我的问题。有人可以给我发一个链接或解释一下 localStorage
的工作原理吗
How Does localStorage
in HTML5 work? I searched every where (even in SO ) to find the actual internal logic of localStorage, but I ended up with visiting some examples which uses localStorage. I haven't found any useful Answer to my question. Can Someone post me a link or explain about the working of localStorage
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不一定确定您在这里寻找什么...但是
localStorage
的内部实现将是特定于浏览器的。我不会指望任何两个浏览器在内部以相同的方式实现该功能(就像所有事情一样,实现和性能将为每个浏览器带来不同的优势)。如果你真的感兴趣,我建议你拉下 Chromium 源代码,看看他们是如何在内部实现的。
I'm not necessarily sure what you're looking for here...but the internal implementation of
localStorage
is going to be browser specific. I wouldn't count on any two browsers implementing the feature the same way internally (just like everything, the implementation and performance will give each browser a different advantage).If you're really interested, I'd suggest pulling down the Chromium source and seeing how they implement things internally.
您可以使用简单的 jQuery 插件使用 localStorage 或 cookie 来存储信息。
这个插件很有用,因为您不需要控制浏览器是否支持 localStorage。
https://github.com/thyagoquintas/jquery-storage
You can use a simple jQuery plugin for store information using localStorage or cookie.
This plugin it's useful because you don't need control if the browser has or hasn't suport to localStorage.
https://github.com/thyagoquintas/jquery-storage