Storage key() 方法
定义和用法
key() 方法返回拥有指定索引的键的名称。
key() 方法属于 Storage 对象,它可以是 localStorage 对象, 也可以是 sessionStorage 对象。
浏览器支持
方法 | |||||
---|---|---|---|---|---|
key() | 4 | 8 | 3.5 | 4 | 10.5 |
语法
localStorage.key(index)
Or:
sessionStorage.key(index)
参数值
参数 | 描述 |
---|---|
index | 必需。数字,代表您希望获取的名称的键的索引。 |
技术细节
DOM 版本: | Web Storage API |
---|---|
返回值: | 字符串值,表示指定键的名称。 |
更多实例
实例
循环遍历每个本地存储项并显示名称:
for (i = 0; i < localStorage.length; i++) {
x = localStorage.key(i);
document.getElementById("demo").innerHTML += x;
}
亲自试一试 »
相关页面
StorageEvent 参考手册: The key 属性