7

我正在使用以下代码来测试 HTML 5 的会话存储。它在除 IE 之外的所有浏览器中都可以正常工作。安装的IE版本是10。

代码 :

<!DOCTYPE html>
<html>
<head>
<script>
function clickCounter()
{
if(typeof(Storage)!=="undefined")
  {
  if (sessionStorage.clickcount)
    {
    sessionStorage.clickcount=Number(sessionStorage.clickcount)+1;
    }
  else
    {
    sessionStorage.clickcount=1;
    }
  document.getElementById("result").innerHTML="You have clicked the button " + sessionStorage.clickcount + " time(s) in this session.";
  }
else
  {
  document.getElementById("result").innerHTML="Sorry, your browser does not support web storage...";
  }
}
</script>
</head>
<body>
<p><button onclick="clickCounter()" type="button">Click me!</button></p>
<div id="result"></div>
<p>Click the button to see the counter increase.</p>
<p>Close the browser tab (or window), and try again, and the counter is reset.</p>
</body>
</html>

可能是什么问题呢?

4

1 回答 1

18

我发现 HTML5 的本地存储和会话存储功能是,这两个功能仅在页面通过 呈现时在 Internet Explorer 中HTTP有效,而当您尝试在本地文件系统上访问这些功能时将无效,即,您正在尝试使用各种 URL C:/Users/Mitaksh/Desktop等直接从文件系统打开示例网页。

将您的应用程序部署在任何application server类似设备上Tomcat,然后访问它......然后您可以看到本地和会话存储在运行中......

于 2013-04-26T05:02:05.233 回答