HTML5 中的 localStorage 如何工作?

发布于 2024-09-17 18:56:07 字数 222 浏览 3 评论 0原文

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 技术交流群。

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

发布评论

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

评论(2

云柯 2024-09-24 18:56:07

我不一定确定您在这里寻找什么...但是 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.

雄赳赳气昂昂 2024-09-24 18:56:07

您可以使用简单的 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

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