当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM Storage getItem()用法及代码示例


HTML DOM Storage getItem() 方法用于通过传递给定的键名来获取存储对象。它将返回键的值,如果没有具有该给定名称的键,则将返回 NULL。

用法

以下是 Storage getItem() 方法的语法 -

localStorage.getItem(keyname);

OR

sessionStorage.getItem(keyname);

此处,keyname 为字符串类型,表示要获取的项的名称。

示例

让我们看一个 HTML DOM Storage getItem() 方法的例子 -

<!DOCTYPE html>
<html>
<body>
<h1 style="text-align:center">Storage getItem() method example</h1>
<p>Create a localStorage item with the name CLICKS to count the number of clicks on the create button by clicking the below button</p>
<button onclick="createItem()">CREATE</button>
<p>Get the CLICKS item value by clicking the below button</p>
<button onclick="showItem()">Display</button>
<p id="Sample"></p>
<script>
   var y=1;
   function createItem() {
      document.getElementById("Sample").innerHTML="localStorage Item has been created with name CLICKS";
      localStorage.visits = y;
      y++;
   }
   function showItem() {
      var x = localStorage.getItem("visits");
      document.getElementById("Sample").innerHTML = "The total no. of clicks are:"+x;
   }
</script>
</body>
</html>

输出

这将产生以下输出 -

单击“创建”按钮 -

单击 “Display” 按钮时 -

相关用法


注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML DOM Storage getItem() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。