getItem()方法用于检索用户指定的存储对象。该存储对象可以是localStorage 对象或sessionStorage 对象。
句法:
- 对于本地存储:
localStorage.getItem(keyname)
对于会话存储:
sessionStorage.getItem(keyname)
参数:它需要Keyname ,它指定用于获取值的键的名称。
返回值:一个字符串,表示指定键的值。
示例:从本地存储中获取项目。
Welcome to GeeksforGeeks
The Storage getItem() Method
Click on button to create a
local storage item
Click the button to get the item value:
输出:
前:
后:
支持的浏览器: DOM getItem()方法支持的浏览器如下:
- 谷歌浏览器
- IE浏览器
- 火狐
- 歌剧
- 苹果浏览器