getItem()方法用于检索用户指定的存储对象。该存储对象可以是localStorage对象或sessionStorage对象。
用法:
- 对于本地存储:
localStorage.getItem(keyname)
对于会话存储:
sessionStorage.getItem(keyname)
参数:它需要Keyname,它指定用于获取值的 key 的名称。
返回值:一个字符串,表示指定键的值。
例:从本地存储中获取项目。
<!DOCTYPE html>
<html>
<head>
<!--script for creating new local
storage item and retrieve it -->
<script>
function createItem() {
localStorage.name = "GeeksforGeeks";
}
function myFunction() {
// get name of item from local storage.
var x = localStorage.getItem("name");
document.getElementById("demo").innerHTML =
x;
}
</script>
</head>
<body>
<h1>Welcome to GeeksforGeeks</h1>
<h3>The Storage getItem() Method</h3>
<p>
Click on button to create a
local storage item
</p>
<button onclick="createItem()">
Create local storage item
</button>
<p>
Click the button to get the item value:
</p>
<button onclick="myFunction()">
Get the item value
</button>
<p id="demo"></p>
</body>
</html>
输出:
之前:
后:
支持的浏览器:下面列出了DOM getItem()方法支持的浏览器:
- 谷歌浏览器
- IE浏览器
- 火狐浏览器
- Opera
- 苹果浏览器
相关用法
- HTML DOM Storage key()用法及代码示例
- HTML DOM Storage removeItem()用法及代码示例
- HTML DOM Storage setItem()用法及代码示例
- HTML Storage事件用法及代码示例
- HTML Storage length用法及代码示例
- p5.js getItem()用法及代码示例
- HTML DOM contains()用法及代码示例
- HTML DOM setAttributeNode()用法及代码示例
- HTML DOM isDefaultNamespace()用法及代码示例
- HTML method属性用法及代码示例
- HTML DOM getAttribute()用法及代码示例
- HTML DOM click()用法及代码示例
- HTML DOM blur()用法及代码示例
注:本文由纯净天空筛选整理自ProgrammerAnvesh大神的英文原创作品 HTML | DOM Storage getItem() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。