HTML5 中的本地存储
我在第 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您没有提供足够的详细信息来正确解决此问题,但请检查以下事项:
You don't provide enough detail to troubleshoot this properly, but check these things out: