您当前的位置: 首页 > 

暂无认证

  • 3浏览

    0关注

    92582博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

dom啦13 移入移出事件

发布时间:2020-09-06 19:28:07 ,浏览量:3

<!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> 
关注
打赏
1653961664
查看更多评论
立即登录/注册

微信扫码登录

0.1129s