如何从 onmouseout 事件调用 JavaScript 函数?


onmouseout 在将鼠标移出该元素时触发。

示例

你可以尝试运行以下示例来学习如何从 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>

更新于: 2020 年 1 月 8 日

280 次浏览

开启你的 职业生涯

完成课程并取得认证

开始学习
广告