如何从 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>
广告