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

Sự kiện onmouseenter trong JavaScript là gì?


Sự kiện onmouseenter kích hoạt khi bạn di chuột qua con trỏ.

Ví dụ

Bạn có thể thử chạy mã sau để tìm hiểu cách làm việc với onmouseenter sự kiện trong JavaScript -

<html>
   <head>
      <script>
         <!--
            function sayHello() {
               alert("Mouse Hover")
            }
         //-->
      </script>
   </head>

   <body>
      <p onmouseenter = "sayHello()">This is demo text for mouseenter event.</p>
   </body>
</html>