使用sessionStorage时出错

发布于 2024-10-06 17:07:40 字数 334 浏览 3 评论 0原文

我试图在页面上使用 sessionStorage 但它给了我一个错误。 这是代码:

<script type="text/JavaScript">
 sessionStorage.setItem("classname", "value1");
 sessionStorage.setItem("classdesc", "value2");
</script>

我从 firebug 控制台得到的错误是: 不支持操作" code: "9

当我尝试使用 localStorage 时它工作正常,那么为什么 sessionStorage 会导致错误呢?

I am trying to use sessionStorage on a page but it is giving me an error.
Here is the code:

<script type="text/JavaScript">
 sessionStorage.setItem("classname", "value1");
 sessionStorage.setItem("classdesc", "value2");
</script>

The error I get from firebug console is: Operation is not supported" code: "9

When I try to use localStorage it works fine, so why does sessionStorage cause an error?

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

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

发布评论

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

评论(1

时光磨忆 2024-10-13 17:07:40

我唯一能想到的是“页面尚未准备好”,尝试将此代码放在正文部分的末尾

<html>
  <head></head>
  <body>
    <!-- YOUR PAGE HERE -->
    <script type="text/JavaScript">
      sessionStorage.setItem("classname", "value1");
      sessionStorage.setItem("classdesc", "value2");
    </script>
  </body>
</html>

最终答案:
sessionStorage 无法在“本地模式”下工作,但如果您将文件上传到服务器,它就会工作。

The only thing I can think of is that "the page isn't ready", try placing this code at the end of the body section

<html>
  <head></head>
  <body>
    <!-- YOUR PAGE HERE -->
    <script type="text/JavaScript">
      sessionStorage.setItem("classname", "value1");
      sessionStorage.setItem("classdesc", "value2");
    </script>
  </body>
</html>

Final Answer:
sessionStorage wont work in "local mode", but it will work if you upload the file to a server.

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