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


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


HTML DOM Storage removeItem() 方法用於通過傳遞給定的鍵名來刪除存儲對象項。

用法

以下是 Storage removeItem() 方法的語法 -

localStorage.removeItem(keyname);

OR

sessionStorage.removeItem(keyname);

這裏,keyname 是字符串類型,表示要刪除的項目的名稱。

示例

讓我們看一下 Storage removeItem() 方法的示例 -

<!DOCTYPE html>
<html>
<body>
<h1 style="text-align:center">Storage removeItem() method example</h1>
<p>Delete the localstorage item by clicking the below button</p>
<button onclick="itemDelete>REMOVE</button>
<p>Display the localstorage item by clicking the below button</p>
<button onclick="itemShow>DISPLAY</button>
<p id="Sample"></p>
<script>
   localStorage.setItem("TEXT1","HELLO WORLD");
   function itemDelete() {
      localStorage.removeItem("TEXT1");
      itemShow();
   }
   function itemShow() {
      var x = localStorage.getItem("TEXT1");
      document.getElementById("Sample").innerHTML ="The 'TEXT1' key value is "+x;
   }
</script>
</body>
</html>

輸出

這將產生以下輸出 -

單擊“顯示”按鈕 -

單擊“刪除”按鈕 -

相關用法


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