码迷,mamicode.com
首页 > 其他好文 > 详细

mouseout、mouseover和mouseleave、mouseenter区别

时间:2017-11-08 11:51:28      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:func   lang   sele   mouse   元素   tle   head   type   back   

mouseenter:当鼠标移入某元素时触发。

mouseleave:当鼠标移出某元素时触发。

mouseover:当鼠标移入某元素时触发,移入和移出其子元素时也会触发。

mouseout:当鼠标移出某元素时触发,移入和移出其子元素时也会触发。

mousemove:鼠标在某元素上移动时触发,即使在其子元素上也会触发。

mouseout、mouseover和mouseleave、mouseenter最大的区别,在于子元素连带触发。

 

<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<style>
.a{
width: 500px;
height: 500px;
background: aliceblue;
}
.b{
width: 200px;
height: 200px;
background: beige;
}
.c{
width: 100px;
height: 100px;
background: violet;
}
</style>
</head>
<body>
<div class="a">A
<div class="b"
onmouseenter="mouseenter()"
onmouseleave="mouseleave()"
onmouseout="mouseout()"
onmouseover="mouseover()"
onmousemove="mousemove()">B
<div class="c">C
</div>
</div>
</div>
<script>
function mouseenter(){
console.log(‘mouseenter‘)
}
function mouseleave(){
console.log(‘mouseleave‘)
}
function mouseout(){
console.log(‘mouseout‘)
}
function mouseover(){
console.log(‘mouseover‘)
}
function mousemove(){
console.log(‘mousemove‘)
}
</script>
</body>
</html>

mouseout、mouseover和mouseleave、mouseenter区别

标签:func   lang   sele   mouse   元素   tle   head   type   back   

原文地址:http://www.cnblogs.com/Loveonely/p/7802942.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!