HTML5 中的本地存储

发布于 2024-11-17 00:12:18 字数 471 浏览 0 评论 0原文

我在第 1 页的本地存储 (html 5) 中保存一个值,然后当我转到第 2 页时,本地存储中的值消失了。您能让我知道可能是什么问题吗?

编辑

我实际上使用以下函数来设置本地存储上的数据,

function set(key, data) 
{ 
     localStorage.setItem(key, data); 
} 
function get(key) 
{ 
     return localStorage.getItem(key); } 
function remove(key) { 
     localStorage.removeItem(key); } 
function clear() { 
     localStorage.clear(); 
} 

我在 Firefox 上使用它时遇到问题,但在 Chrome 上没有任何问题。这看起来是一个完全不同的问题。 感谢和问候 阿比舍克·R·斯里坎特

I am saving a value in the local storage (html 5) in page 1 and then when i go to page 2, the values in the localstorage are gone. Could you please let me know what could be the issue?

Editing

I am actually using the following functions to set the data on the local storage

function set(key, data) 
{ 
     localStorage.setItem(key, data); 
} 
function get(key) 
{ 
     return localStorage.getItem(key); } 
function remove(key) { 
     localStorage.removeItem(key); } 
function clear() { 
     localStorage.clear(); 
} 

I have issues getting it to work on Firefox and dont have any issues on Chrome. This looks like an entirely different issue.
Thanks and Regards
Abishek R Srikaanth

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

憧憬巴黎街头的黎明 2024-11-24 00:12:18

您没有提供足够的详细信息来正确解决此问题,但请检查以下事项:

  1. 您是否在本地预览您的设计(例如通过 file:// 协议),或者您是否在正确的 Web 服务器上?只有 http:// 请求才能准确地为您工作
  2. 本地存储和 Web SQL 存储通过引用原始域或 IP 地址来工作(同样为什么第 1 点很重要):您的第二个页面仍在范围内吗?
  3. 当您返回到第 1 页时会发生什么?值会重新出现吗?

You don't provide enough detail to troubleshoot this properly, but check these things out:

  1. Are you previewing your design locally (e.g. via the file:// protocol), or are you on a proper web server? Only http:// requests will work accurately for you
  2. Local storage and Web SQL storage work by reference to the originating domain or IP address (again why point #1 is important): is your second page still in scope?
  3. What happens when you go back to page 1? Do the values re-appear?
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文