HTML DOM 存储 getItem() 方法
HTML DOM 存储 getItem() 方法用于通过传递给定键名来获取存储对象。它将返回键的值,如果不存在具有该给定名称的键,则将返回 NULL。
语法
以下是 Storage getItem() 方法的语法 -
localStorage.getItem(keyname);
或
sessionStorage.getItem(keyname);
其中,keyname 是字符串类型,表示要获取的项的名称。
示例
让我们看一个 HTML DOM 存储 getItem() 方法的示例 -
<!DOCTYPE html> <html> <body> <h1 style="text-align:center">Storage getItem() method example</h1> <p>Create a localStorage item with the name CLICKS to count the number of clicks on the create button by clicking the below button</p> <button onclick="createItem()">CREATE</button> <p>Get the CLICKS item value by clicking the below button</p> <button onclick="showItem()">Display</button> <p id="Sample"></p> <script> var y=1; function createItem() { document.getElementById("Sample").innerHTML="localStorage Item has been created with name CLICKS"; localStorage.visits = y; y++; } function showItem() { var x = localStorage.getItem("visits"); document.getElementById("Sample").innerHTML = "The total no. of clicks are : "+x; } </script> </body> </html>
输出
这将产生以下输出 -
点击 CREATE 按钮 -
点击“Display”按钮 -
广告