gridview鼠标单击选中行问题
如图所示,图中,我单击第一行,选中第一行,背景色改变,我想单击选中第二行时,第一行的背景色恢复为白色,第二行为淡黄色的背景是要点击,不是鼠标移到上面...
如图所示,图中,我单击第一行,选中第一行,背景色改变,我想单击选中第二行时,第一行的背景色恢复为白色,第二行为淡黄色的背景
是要点击,不是鼠标移到上面 展开
是要点击,不是鼠标移到上面 展开
1个回答
展开全部
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor;this.style.backgroundColor='#ffcc33'");
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=c;");
}
}
鼠标移动到哪行,哪行的背景色改变。(颜色可能与你要求的不一样)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor;this.style.backgroundColor='#ffcc33'");
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=c;");
}
}
鼠标移动到哪行,哪行的背景色改变。(颜色可能与你要求的不一样)
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询