3个回答
2013-08-27
展开全部
protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor='#C14FB4';");//这是鼠标移到某行时改变某行的背景
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=currentcolor;");//鼠标移走时恢复 e.Row.Attributes.Add("onclick", "this.style.backgroundColor='Gray'");//鼠标点击变灰色,不过点击不好,可能你点击后就换不会原来那种背景色,一般用鼠标移上移下来改变即可
}
}在
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor='#C14FB4';");//这是鼠标移到某行时改变某行的背景
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=currentcolor;");//鼠标移走时恢复 e.Row.Attributes.Add("onclick", "this.style.backgroundColor='Gray'");//鼠标点击变灰色,不过点击不好,可能你点击后就换不会原来那种背景色,一般用鼠标移上移下来改变即可
}
}在
2013-08-27
展开全部
就是那样的。我知道滴他们都说了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐于2018-03-31
展开全部
在ItemDataBound事 件中 if(e.Item.ItemType==ListItemType.Item || e.Item.ItemType==ListItemType.AlternatingItem)
{
e.Item.Attributes.Add("onmouseover", "this.style.backgroundColor='#99cc00';this.style.color='buttontext';this.style.cursor='default';");
e.Item.Attributes.Add("onmouseout", "this.style.backgroundColor='';this.style.color='';");
}
{
e.Item.Attributes.Add("onmouseover", "this.style.backgroundColor='#99cc00';this.style.color='buttontext';this.style.cursor='default';");
e.Item.Attributes.Add("onmouseout", "this.style.backgroundColor='';this.style.color='';");
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询