鼠标事件 | mouseover mouseout / mouseenter mouseleave

父级元素添加鼠标事件  子元素绑定点击事件

<div @mouseenter="actioveCollection = index" @mouseleave ="actioveCollection = false">
    <i class="el-icon-star-off" v-if="!isCollection && actioveCollection === index" @click="addFastInstruction(item)"></i>
</div>

鼠标事件会影响子元素的点击事件

so~

调用子元素方法时阻止冒泡即可 (event.stopPropagation();)

addFastInstruction(fastInstruction) {
    event.stopPropagation();
    // ...
    // 要执行的动作
},

但是!

mouseover mouseout使用阻止冒泡后不生效

mouseenter  mouseleave可以

 

posted @ 2024-04-11 10:46  三水儿  阅读(8)  评论(0编辑  收藏  举报