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機能し、ローカル ファイル システムでこれらの機能にアクセスしようとすると機能しないということです。つまり、ファイルシステムから直接サンプル Web ページを開こうとしています。その URL には、 C:/Users/Mitaksh/Desktop.

application serverなどにアプリケーションをデプロイしTomcat、それにアクセスします..そして、ローカルストレージとセッションストレージの両方が動作していることを確認できます..

于 2013-04-26T05:02:05.233 に答える