会话存储在IE中不起作用

时间:2013-04-25 10:28:12

标签: html5 session internet-explorer-10 session-storage

我使用以下代码来测试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>

可能是什么问题?

1 个答案:

答案 0 :(得分:17)

我在HTML5的本地存储和会话存储功能中发现的是,这两个功能仅在通过HTTP呈现页面时才能在Internet Explorer中工作,并且在您尝试使用时无效访问本地文件系统上的这些功能,即您尝试直接从文件系统打开示例网页,其中包含排序的URL C:/Users/Mitaksh/Desktop等。

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