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

Làm thế nào để gọi một hàm JavaScript từ một sự kiện onmouseout?


onmouseout kích hoạt khi bạn di chuyển chuột ra khỏi phần tử đó.

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 onmouseout

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>