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

รันสคริปต์เมื่อผู้ใช้นำทางไปยังหน้าใน HTML?


ใช้ onpageshow แอตทริบิวต์เพื่อรันสคริปต์เมื่อผู้ใช้นำทางไปยังหน้า

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน onpageshow แอตทริบิวต์ −

<!DOCTYPE html>
<html>
   <body onpageshow = "display()">
      <h2>Tutorialspoint</h2>
      <p>Simply Easy Learning</p>
      <script>
         function display() {
            alert(You're back!");
         }
      </script>
   </body>
</html>