asp.net listview选择onmouseover

时间:2012-06-15 13:54:21

标签: c# asp.net

当鼠标悬停在列表视图上时,如何突出显示整行视图? 例如,如果将鼠标悬停在一行上,则行的背景颜色会发生变化。 我认为它是tr的onmouseover属性?

2 个答案:

答案 0 :(得分:3)

如果你习惯使用,jQuery试试这个:

$(function(){
$("tr").hover(function(){
    $(this).css('background-color', '#FFFF99');;
    $(this).css('background-color', '#FFFFFF');;
    });
});

<强>更新

在“tr”标签中添加一个课程 例如:

<tr class="trOnHoverChange"></tr>

$(function(){
$(".trOnHoverChange").hover(function(){
    $(this).css('background-color', '#FFFF99');;
    $(this).css('background-color', '#FFFFFF');;
    });
});

答案 1 :(得分:-1)

我发现这与你的问题类似,可能会指出你正确的方向:

ASP.NET Gridview: Highlighting rows on mouse over then updating the highlighted rows

修改

刚刚发现这个,听起来就像你现在正在做的那样。

http://forums.asp.net/t/1450332.aspx