W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!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>