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

เรียกใช้สคริปต์เมื่อตัวชี้เมาส์ย้ายออกจากองค์ประกอบใน HTML หรือไม่


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

ตัวอย่าง

<!DOCTYPE html>
<html>
   <body>
      <h3 id = "myid" onmouseout = "mouseOut()">
         This is demo heading.
      </h3>
      <p>Click above and then release.</p>

      <script>
         function mouseOut() {
            document.getElementById("myid").style.color = "red";
         }

      </script>
   </body>
</html>