实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script>
5
function clickCounter()
6
{
7
if(typeof(Storage)!=="undefined")
8
  {
9
  if (localStorage.clickcount)
10
    {
11
    localStorage.clickcount=Number(localStorage.clickcount)+1;
12
    }
13
  else
14
    {
15
    localStorage.clickcount=1;
16
    }
17
  document.getElementById("result").innerHTML="You have clicked the button " + localStorage.clickcount + " time(s).";
18
  }
19
else
20
  {
21
  document.getElementById("result").innerHTML="Sorry, your browser does not support web storage...";
22
  }
23
}
24
</script>
25
</head>
26
<body>
27
<p><button onclick="clickCounter()" type="button">Click me!</button></p>
28
<div id="result"></div>
29
<p>Click the button to see the counter increase.</p>
30
<p>Close the browser tab (or window), and try again, and the counter will continue to count (is not reset).</p>
31
</body>
32
</html>
33
34