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

วัตถุประวัติ JavaScript


ออบเจ็กต์ประวัติ JavaScript มีรายการ URL ที่ผู้ใช้เยี่ยมชมและช่วยให้เราสามารถย้อนกลับหรือส่งต่อในรายการประวัติและโหลด URL บางส่วนจากรายการประวัติ

ต่อไปนี้เป็นรหัสสำหรับใช้งานวัตถุประวัติใน JavaScript -

ตัวอย่าง

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
   body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   }
   .sample {
      font-size: 18px;
      font-weight: 500;
   }
</style>
</head>
<body>
<h1>JavaScript History object</h1>
<div class="sample"></div>
<button class="Btn">CLICK HERE</button>
<h3>
Click on the above button to check our history length
</h3>
<script>
   let sampleEle = document.querySelector(".sample");
   document.querySelector(".Btn").addEventListener("click", () => {
      sampleEle.innerHTML = "Your history length is = " + history.length;
   });
</script>
</body>
</html>

ผลลัพธ์

วัตถุประวัติ JavaScript

เมื่อคลิกปุ่ม 'คลิกที่นี่' -

วัตถุประวัติ JavaScript