代码语言:javascript复制
<!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>