Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

รับข้อมูลจาก sessionStorage ใน JavaScript หรือไม่


sessionStorage

localStorage และ sessionStorage คุณสมบัติอนุญาตให้บันทึกคู่คีย์/ค่าในเว็บเบราว์เซอร์ sessionStorage ออบเจ็กต์เก็บข้อมูลไว้เพียงเซสชันเดียว ข้อมูลจะถูกลบเมื่อปิดเบราว์เซอร์ ทำงานเหมือนกับที่จัดเก็บในตัวเครื่อง . เริ่มแรกเราต้องตรวจสอบว่าเบราว์เซอร์รองรับการจัดเก็บเซสชันหรือไม่ ต่อมาเราต้องสร้างข้อมูลและดึงข้อมูล

ไวยากรณ์การตั้งค่าข้อมูลใน sessionStorage

sessionStorage.setItem();

ตัวอย่าง

<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>

ผลลัพธ์

Tutorix