Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

onmouseout 이벤트에서 JavaScript 함수를 호출하는 방법은 무엇입니까?


마우스아웃 해당 요소에서 마우스를 이동할 때 트리거됩니다.

예시

다음 예제를 실행하여 onmouseout 이벤트에서 JavaScript 함수를 호출하는 방법을 배울 수 있습니다.

라이브 데모

<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>