JavaScript ইতিহাস অবজেক্টে ব্যবহারকারীর দ্বারা পরিদর্শন করা URL-এর তালিকা থাকে এবং আমাদেরকে ইতিহাসের তালিকায় পিছনে বা এগিয়ে যেতে এবং ইতিহাসের তালিকা থেকে কিছু url লোড করার অনুমতি দেয়৷
জাভাস্ক্রিপ্ট -
-এ হিস্ট্রি অবজেক্ট বাস্তবায়নের জন্য কোড নিচে দেওয়া হলউদাহরণ
<!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>
আউটপুট
'এখানে ক্লিক করুন' বোতামে ক্লিক করলে -