firefox扩展localStorage问题

发布于 2024-10-20 05:38:56 字数 526 浏览 2 评论 0原文

我尝试将值保存在 localStorage 中,但它不起作用。也许我忘记了什么。首先我认为 localStorage 还不够,所以我将其扩展为 window.localStorage。我需要调用一些特殊的图书馆才能访问它吗?我的Firefox版本是3.5以上。

这是我的代码:

var ID1 = document.getElementById("id1");
var ID2 = document.getElementById("id2");

window.localStorage.setItem("IDF",JSON.stringify(ID1));
window.localStorage.setItem("IDS",JSON.stringify(ID2)); 

var RUN1 = JSON.parse(window.localStorage.getItem("IDF"));
var RUN2 = JSON.parse(window.localStorage.getItem("IDS"));

alert(RUN1 + RUN2);         

I tried to save values in localStorage but it does not work. Maybe I forgot something. First I was thinking localStorage was not enough so I extended it to window.localStorage. Do I have to call some special library to access it? My Firefox version is above 3.5.

Here is my code:

var ID1 = document.getElementById("id1");
var ID2 = document.getElementById("id2");

window.localStorage.setItem("IDF",JSON.stringify(ID1));
window.localStorage.setItem("IDS",JSON.stringify(ID2)); 

var RUN1 = JSON.parse(window.localStorage.getItem("IDF"));
var RUN2 = JSON.parse(window.localStorage.getItem("IDS"));

alert(RUN1 + RUN2);         

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

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

发布评论

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

评论(1

黯淡〆 2024-10-27 05:38:56

嗯,

发现问题了:

window.content.localStorage.setItem

如果将对象值分配给变量,也可以跳过 JSON:

var IDF = ID1.value

hmmm,

found the problem:

window.content.localStorage.setItem

you can skip JSON too if you assign the object value to the variables:

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