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

รันสคริปต์เมื่อผู้ใช้เปิดหรือปิด
องค์ประกอบใน HTML?


เมื่อผู้ใช้เปิดหรือปิดองค์ประกอบ

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

ตัวอย่าง

<!DOCTYPE html>
<html>
   <body>
      <h2>Details</h2>
      <p>You need to join office from Feb23<p>
      <details ontoggle="display()">
         <summary>More Information</summary>
         <p>Timings: 9 to 5:30</p>
         <p>Office location: Hyderabad</p>
      </details>
     
      <script>
         function myFunction() {
            alert("Timings, office location, etc");
         }
      </script>
   </body>
</html>