vue循环出来的div div里面右侧有删除按钮 鼠标移入移出改变其中一个删除按钮的背景颜色
时间: 2024-05-01 08:17:47 浏览: 160
要实现这个功能可以使用Vue的指令v-bind:class和v-on:mouseenter以及v-on:mouseleave。
首先,在循环中给每个删除按钮添加唯一的id或者索引值,在template中通过v-bind:class绑定一个类名,该类名默认不显示背景颜色。
然后,在该删除按钮上绑定鼠标移入和移出事件v-on:mouseenter和v-on:mouseleave,在事件方法中修改该删除按钮的类名,使其显示背景颜色。
代码示例:
```
<template>
<div v-for="(item, index) in list" :key="item.id">
{{item.title}}
<div class="delete-btn" :class="{color: activeIndex === index}" @mouseenter="handleMouseenter(index)" @mouseleave="handleMouseleave(index)">
删除
</div>
</div>
</template>
<script>
export default {
data() {
return {
list: [{id: 1, title: 'item1'}, {id: 2, title: 'item2'}, {id: 3, title: 'item3'}],
activeIndex: null
}
},
methods: {
handleMouseenter(index) {
this.activeIndex = index
},
handleMouseleave() {
this.activeIndex = null
}
}
}
</script>
<style>
.delete-btn {
display: inline-block;
background-color: #fff;
border: 1px solid #ccc;
padding: 5px 10px;
cursor: pointer;
}
.delete-btn.color {
background-color: #f00;
color: #fff;
}
</style>
```
阅读全文