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

HTML DOM Storage getItem() วิธีการ


เมธอด HTML DOM Storage getItem() ใช้สำหรับรับอ็อบเจ็กต์หน่วยเก็บข้อมูลโดยส่งชื่อคีย์ที่กำหนด มันจะคืนค่าของคีย์ และหากไม่มีคีย์ที่มีชื่อนั้น ค่า NULL จะถูกส่งกลับ

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์สำหรับเมธอด Storage getItem() -

localStorage.getItem(keyname);

หรือ

sessionStorage.getItem(keyname);

ในที่นี้ ชื่อคีย์เป็นประเภทสตริงและแสดงถึงชื่อของรายการที่จะได้รับ

ตัวอย่าง

ให้เราดูตัวอย่างสำหรับเมธอด HTML DOM Storage getItem() -

<!DOCTYPE html>
<html>
<body>
<h1 style="text-align:center">Storage getItem() method example</h1>
<p>Create a localStorage item with the name CLICKS to count the number of clicks on the create button by clicking the below button</p>
<button onclick="createItem()">CREATE</button>
<p>Get the CLICKS item value by clicking the below button</p>
<button onclick="showItem()">Display</button>
<p id="Sample"></p>
<script>
   var y=1;
   function createItem() {
      document.getElementById("Sample").innerHTML="localStorage Item has been created with name CLICKS";
      localStorage.visits = y;
      y++;
   }
   function showItem() {
      var x = localStorage.getItem("visits");
      document.getElementById("Sample").innerHTML = "The total no. of clicks are : "+x;
   }
</script>
</body>
</html>

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

HTML DOM Storage getItem() วิธีการ

เมื่อคลิกปุ่มสร้าง -

HTML DOM Storage getItem() วิธีการ

เมื่อคลิกปุ่ม "แสดง" -

HTML DOM Storage getItem() วิธีการ