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

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


Sự kiện onmousemove kích hoạt khi con trỏ chuột di chuyển.

Ví dụ

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

<html>
   <head>
      <script>
         <!--
            function sayHello() {
               alert("Mouse Move")
            }
         //-->
      </script>
   </head>
   <body>
      <p onmousemove = "sayHello()">This is demo text for mousemove event.</p>
   </body>
</html>