key() 方法返回具有指定索引的键的名称。
key() 方法属于存储对象,它可以是本地存储物体或一个会话存储目的。
Method | |||||
---|---|---|---|---|---|
key() | 4 | 8 | 3.5 | 4 | 10.5 |
localStorage.key(
index)
sessionStorage.key(
index)
Parameter | Description |
---|---|
index | Required. A Number representing the index of the key you want to get the name of |
DOM 版本: | 网络存储API |
---|---|
返回值: | 一个 String,代表指定键的名称 |
循环遍历每个本地存储项并显示名称:
for (i = 0; i < localStorage.length; i++) {
x = localStorage.key(i);
document.getElementById("demo").innerHTML += x;
}
亲自试一试 »
存储事件参考:关键属性
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!