鼠标放到哪一行,哪一行颜色发生变化

protected void GridView2_RowDataBound1(object sender, GridViewRowEventArgs e)
    {
        if (e.Row.RowType==DataControlRowType.DataRow)
        {
            //当鼠标在某一行上方时激发
            e.Row.Attributes.Add("onmouseover", "curColor=this.style.backgroundColor;this.style.backgroundColor='#D9B3B3'");
            //当鼠标从某一行上方移开时激发
            e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=curColor");
        }
    }

 
在Element UI中,你可以利用表格组件`el-table`结合自定义的mouseover事件以及虚拟滚动功能来实现这个效果。以下是步骤: 1. 首先,在数据列表中添加一个唯一的标识符,比如`rowIndex`,这将在每行元素中存储行号。 ```javascript data() { return { tableData: [ { rowIndex: 1, ... }, { rowIndex: 2, ... }, ... ] } } ``` 2. 定义一个计算属性,用于动态生成行下方的信息: ```javascript computed: { rowInfo(row) { return `这是第${row.rowIndex}行`; } } ``` 3. 在`<el-table>`标签中,给每一行添加一个`<template>`标签,当鼠标悬浮时渲染这个行下方的内容: ```html <el-table :data="tableData" @mouseover.native="handleMouseOver"> <el-table-column type="index"></el-table-column> <template #default="{ row }"> <!-- 其他列... --> <span v-if="hoveredRowIndex === row.rowIndex" style="position: absolute; bottom: 0;">{{ rowInfo(row) }}</span> <!-- 表格内容... --> </template> </el-table> <script setup> import { ref, onMounted } from 'vue'; const hoveredRowIndex = ref(null); onMounted(() => { // 初始化hoveredRowIndex为空 hoveredRowIndex.value = null; }); function handleMouseOver(event) { const targetRow = event.target.parentNode.__vue__; if (targetRow) { hoveredRowIndex.value = targetRow.rowIndex; } } </script> ``` 4. 当鼠标离开当前行时,将`hoveredRowIndex`重置为null,隐藏行下方的信息: ```javascript <template #default="{ row }"> <span v-if="hoveredRowIndex === row.rowIndex" style="position: absolute; bottom: 0;" @mouseout="hoveredRowIndex = null">{{ rowInfo(row) }}</span> <!-- ... --> </template> ``` 现在,当你把鼠标悬停在`el-table`的任何一行时,该行下面会显示“这是第n行”的提示信息。当鼠标移开,信息就会消失。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值