Computer >> Máy Tính >  >> Lập trình >> HTML

Thực thi một tập lệnh khi con trỏ chuột di chuyển qua một phần tử trong HTML?


onmouseover thuộc tính kích hoạt khi con trỏ chuột di chuyển qua một phần tử trong HTML.

Ví dụ

Bạn có thể thử chạy mã sau để triển khai onmouseover thuộc tính -

<!DOCTYPE html>
<html>
   <body>
      <h3 id = "myid" onmouseover = "display()">
         This is demo heading.
      </h3>
      <p>Keep the mouse cursor on the heading to change the color.</p>
      <script>
         function display() {
            document.getElementById("myid").style.color = "red";
         }
      </script>
   </body>
</html>