當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML DOM Storage getItem()用法及代碼示例


getItem()方法用於檢索用戶指定的存儲對象。該存儲對象可以是localStorage對象或sessionStorage對象。

用法:

    對於本地存儲:
localStorage.getItem(keyname)

對於會話存儲:

sessionStorage.getItem(keyname)

參數:它需要Keyname,它指定用於獲取值的 key 的名稱。

返回值:一個字符串,表示指定鍵的值。

例:從本地存儲中獲取項目。

<!DOCTYPE html> 
<html> 
  
<head> 
    <!--script for creating new local  
      storage item and retrieve it -->
    <script> 
        function createItem() { 
            localStorage.name = "GeeksforGeeks"; 
        } 
  
        function myFunction() { 
  
            // get name of item from local storage. 
            var x = localStorage.getItem("name"); 
            document.getElementById("demo").innerHTML = 
                x; 
        } 
    </script> 
</head> 
  
<body> 
    <h1>Welcome to GeeksforGeeks</h1> 
    <h3>The Storage getItem() Method</h3> 
    <p> 
      Click on button to create a  
      local storage item  
    </p> 
  
    <button onclick="createItem()"> 
      Create local storage item 
    </button> 
  
    <p> 
      Click the button to get the item value:
    </p> 
  
    <button onclick="myFunction()"> 
      Get the item value 
    </button> 
  
    <p id="demo"></p> 
  
</body> 
  
</html>

輸出:
之前:

後:

支持的瀏覽器:下麵列出了DOM getItem()方法支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • 火狐瀏覽器
  • Opera
  • 蘋果瀏覽器


相關用法


注:本文由純淨天空篩選整理自ProgrammerAnvesh大神的英文原創作品 HTML | DOM Storage getItem() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。