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");
}
}
鼠标放到哪一行,哪一行颜色发生变化
最新推荐文章于 2022-01-29 13:38:43 发布