<!DOCTYPE html> <html> <head> <title> </title> <style> *{ margin: 0; padding: 0; } div{ width: 300px; height: 300px; background: red; } </style> </head> <body> <div></div> <script type="text/javascript"> let qq= document.querySelector("div"); //移入事件 qq.onmouseenter=function() { console.log("移入事件"); } //移除事件 qq.onmouseleave=function() { console.log("移出事件"); } qq.onmousemove=function() { console.log("移动事件"); } </script> </body> </html>
dom啦13 移入移出事件
关注
打赏