Computer >> Máy Tính >  >> Lập trình >> HTML

Thuộc tính HTML DOM localStorage


Thuộc tính HTML DOM localStorage cho phép người dùng lưu trữ các cặp khóa-giá trị trong chính trình duyệt cục bộ để tham khảo trong tương lai. Các cặp khóa-giá trị sẽ không bị mất cho đến khi bị xóa / xóa rõ ràng.

Cú pháp

Sau đây là cú pháp -

Window.localStorage

Tại đây, localStorage có thể có các thuộc tính / phương thức sau -

  • setItem (‘key’, ’ value ')
  • getItem (‘key’)
  • removeItem (‘key’)

Hãy để chúng tôi xem một ví dụ về thuộc tính localStorage -

Ví dụ

<!DOCTYPE html>
<html>
<head>
<title>LocalStorage clear()</title>
<style>
   form {
      width:70%;
      margin: 0 auto;
      text-align: center;
   }
   * {
      padding: 2px;
      margin:5px;
   }
   input[type="button"] {
      border-radius: 10px;
   }
   table,th,td {
      border:1px solid black;
      border-collapse: collapse;
      margin: 0 auto;
   }
</style>
</head>
<body>
   <form>
      <fieldset>
         <legend>LocalStorage clear( )</legend>
         <table>
            <tr>
               <th>Key</th>
               <th>Value</th>
            </tr>
            <tr>
               <td>PassKey</td>
               <td>ja12ertplo</td>
            </tr>
         </table>
         <input type="button" value="Store Key" onclick="storeData()">
         <input type="button" value="Delete Key" onclick="clearData()">
         <div id="divDisplay"></div>
      </fieldset>
   </form>
   <script>
      var divDisplay = document.getElementById("divDisplay");
      var extStyle = document.getElementById("extStyle");
      function clearData(){
         localStorage.clear();
         divDisplay.textContent = 'Succesfully Deleted';
      }
      function storeData(){
         localStorage.setItem('PassKey','ja12ertplo');
         divDisplay.textContent = 'Succesfully Stored';
      }
   </script>
</body>
</html>

Đầu ra

Sau khi nhấp vào ‘Khoá cửa hàng’ nút -

Thuộc tính HTML DOM localStorage

Sau khi nhấp vào ‘Xóa khóa’ nút -

Thuộc tính HTML DOM localStorage