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

Làm cách nào để gọi một hàm JavaScript từ một sự kiện onmouseover?


onmouseover sự kiện kích hoạt khi bạn đưa chuột qua bất kỳ phần tử nào.

Ví dụ

Bạn có thể thử chạy ví dụ sau để tìm hiểu cách gọi một hàm JavaScript từ sự kiện onmouseover

Bản trình diễn trực tiếp

<html>
   <head>
      <script>
         <!--
            function over() {
               document.write ("Mouse Over");
            }
            function out() {
               document.write ("Mouse Out");
            }
         //-->
      </script>
   </head>
   <body>
      <p>Bring your mouse inside the division to see the result:</p>
      <div onmouseover="over()" onmouseout="out()">
         <h2> This is inside the division </h2>
      </div>
   </body>
</html>