如何从onmouseover事件中调用JavaScript函数?

将鼠标移到任何元素上时,会触发onmouseover事件。

示例

您可以尝试运行以下示例,以了解如何从onmouseover事件调用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>