JavaScript中 mouseenter 和 mouseover 的区别

mouseenter事件和mouseover事件的区别

mouseenter事件和mouseover事件很相似,都是当鼠标移动到元素上就会触发mouseover事件。下面就说一下两者的区别:

当鼠标移动到元素上时就会触发 mouseenter事件,而mouseenter 只会经过自身盒子触发,因为mouseover不会冒泡。

mouseover鼠标经过自身盒子会触发,经过子盒子还会触发

<style>
     .father{
        width:200px;
        height: 200px;
        background-color: pink;
    }
    .son{
        width: 100px;
        height: 100px;
        background-color: plum;
    }
</style>
<body>
    <div class="father">
        <div class="son"></div>
    </div>
    <script>
        var father = document.querySelector('.father')
        var son = document.querySelector('.son')
        father.addEventListener('mouseover',function(){
            console.log(100)
        })
    </script>
</body>
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值