1个回答
展开全部
单元格?现在以Gridview的每一行的第一列为 目标;我现在写个简单的事例,就是当鼠标扫过这个单元格的时候 背景色变为蓝色,鼠标离开后颜色还原。
如下:
GridView1的RowDataBound事件
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowIndex != -1)
{
e.Row.Cells[0].Attributes.Add("onmouseover", " c = this.style.backgroundColor;this.style.backgroundColor='Blue'");
e.Row.Cells[0].Attributes.Add("onmouseout", "this.style.backgroundColor=c");
}
}
如下:
GridView1的RowDataBound事件
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowIndex != -1)
{
e.Row.Cells[0].Attributes.Add("onmouseover", " c = this.style.backgroundColor;this.style.backgroundColor='Blue'");
e.Row.Cells[0].Attributes.Add("onmouseout", "this.style.backgroundColor=c");
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询