Storage length 属性
JavaScript基础 2022-05-23 17:42:51小码哥的IT人生shichen
Storage length 属性
实例
获取此域的本地存储项数:
var x = localStorage.length;
完整实例:
<!DOCTYPE html>
<html>
<body>
<h1>Storage length 属性</h1>
<p>本例演示如何使用 length 属性获取存储在本地存储对象中的项目数。</p>
<button onclick="myFunction()">获取存储项目的数量</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = localStorage.length;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
length 属性返回存储在浏览器 Storage 对象中的项目数,对于这个特定的域。
length 属性属于 Storage 对象,它可以是 localStorage 对象,也可以是 sessionStorage 对象。
浏览器支持
属性 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
length | 4 | 8 | 3.5 | 4 | 10.5 |
语法
localStorage.length;
或者:
sessionStorage.length;
技术细节
DOM 版本: | Web Storage API |
---|---|
返回值: | 整数,表示存储项目的数量。 |
更多实例
示例代码:
相同的例子,但使用会话存储而不是本地存储。
获取此域的会话存储项数:
var x = sessionStorage.length;
完整实例:
<!DOCTYPE html>
<html>
<body>
<h1>Storage length 属性</h1>
<p>本例演示如何使用 length 属性获取会话存储对象中存储的项目数。</p>
<h2>缺少 localStorage 项目?</h2>
<p>由于您的会话存储中可能没有存储任何项目,因此我们添加了一个脚本来为您创建一些项目。</p>
<button onclick="createItems()">创建会话存储项</button>
<h2>获取 sessionStorage 项目的数量</h2>
<p>点击按钮获取会话存储项数:</p>
<button onclick="myFunction()">获取项目数</button>
<p id="demo"></p>
<script>
function createItems() {
sessionStorage.test1 = "hello";
sessionStorage.test2 = "Bill";
sessionStorage.test3 = 123;
}
function myFunction() {
var x = sessionStorage.length;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
示例代码:
循环遍历每个本地存储项并显示名称:
for (i = 0; i < localStorage.length; i++) {
x = localStorage.key(i);
document.getElementById("demo").innerHTML += x;
}
完整实例:
<!DOCTYPE html>
<html>
<body>
<h1>Storage 对象</h1>
<p>本例演示如何遍历此域的所有本地存储项。</p>
<h2>缺少 localStorage 项目?</h2>
<p>由于您的本地存储中可能没有存储指定的项目,因此我们添加了一个脚本来为您创建它。</p>
<button onclick="createItems()">创建本地存储项</button>
<h2>显示项目</h2>
<p>单击按钮来显示所有项目:</p>
<button onclick="displayItems()">显示项目</button>
<p id="demo"></p>
<script>
function createItems() {
localStorage.setItem("mytime", Date.now());
localStorage.setItem("myname", "Bill");
localStorage.setItem("myage", 19);
}
function displayItems() {
var l, i;
document.getElementById("demo").innerHTML = "";
for (i = 0; i < localStorage.length; i++) {
x = localStorage.key(i);
document.getElementById("demo").innerHTML += x + "<br>";
}
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html