dom啦13 移入移出事件

2020-10-28 11:32:08 浏览数 (1)

代码语言: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>
dom

0 人点赞