gridview鼠标经过时改变颜色 可鼠标离开后有时却会留下了痕迹,改变行原有的颜色?
淡绿色是鼠标经过时留下的....鼠标离开后有时才改变行原有的颜色,有时不会.....RowDataBound事件:if(e.Row.RowType==DataContro...
淡绿色是鼠标经过时留下的....鼠标离开后有时才改变行原有的颜色,有时不会.....
RowDataBound事件:
if (e.Row.RowType == DataControlRowType.DataRow) { e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor;this.style.backgroundColor='#e5f6cf'"); e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=c");
} 展开
RowDataBound事件:
if (e.Row.RowType == DataControlRowType.DataRow) { e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor;this.style.backgroundColor='#e5f6cf'"); e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=c");
} 展开
3个回答
展开全部
protected void gvDeviceInfo_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
//鼠标悬停变色
e.Row.Attributes.Add("onmouseover", "oldBG=this.style.backgroundColor;this.style.backgroundColor='#FF1199';");
//貌似你在 '#e5f6cf' 这个颜色后面少了个分号
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=oldBG;");
}
}
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
//鼠标悬停变色
e.Row.Attributes.Add("onmouseover", "oldBG=this.style.backgroundColor;this.style.backgroundColor='#FF1199';");
//貌似你在 '#e5f6cf' 这个颜色后面少了个分号
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=oldBG;");
}
}
展开全部
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
//样式-------------------------------------
e.Row.Attributes.Add("onmouseover", "this.style.backgroundColor='#E7E7FF';this.style.color='buttontext';this.style.cursor='hand'");
}
{
//样式-------------------------------------
e.Row.Attributes.Add("onmouseover", "this.style.backgroundColor='#E7E7FF';this.style.color='buttontext';this.style.cursor='hand'");
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
protected void gvCompany_RowDataBound(object sender, GridViewRowEventArgs e)
{
//判断当前行的类型是否为数据行
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor='#6699ff'");
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor='white'");
}
}
{
//判断当前行的类型是否为数据行
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor='#6699ff'");
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor='white'");
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询