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

Nhận dữ liệu từ sessionStorage bằng JavaScript?

sessionStorage

localStorage sessionStorage thuộc tính cho phép lưu các cặp khóa / giá trị trong trình duyệt web. sessionStorage đối tượng chỉ lưu trữ dữ liệu cho một phiên. Dữ liệu sẽ bị xóa khi đóng trình duyệt. Nó hoạt động giống như bộ nhớ cục bộ . Ban đầu, chúng ta phải kiểm tra xem trình duyệt có hỗ trợ lưu trữ phiên hay không. Sau này, chúng ta phải tạo dữ liệu và phải lấy dữ liệu.

Cú pháp đặt dữ liệu trong sessionStorage

sessionStorage.setItem();

Ví dụ

<html>
<body>
<p> id = "storage"</p>
<script>
   if (typeof(Storage) !== "undefined") {
      sessionStorage.setItem("product", "Tutorix");
      document.getElementById("storage").innerHTML = sessionStorage.getItem("product");
   }
   else {
      document.getElementById("storage").innerHTML = "Sorry,no Web Storage compatibility...";
   }
</script>
</body>
</html>

Đầu ra

Tutorix