将鼠标悬停移出后,会触发onmouseenter事件。
您可以尝试运行以下代码以了解如何使用JavaScript中的onmouseleave事件-
<html> <head> <script> <!-- function sayHello() { alert("Mouse Leave") } //--> </script> </head> <body> <p onmouseleave = "sayHello()">This is demo text for mouseleave event.</p> </body> </html>