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");
}
展开
 我来答
不想起名字了2333
2011-12-31 · TA获得超过2447个赞
知道大有可为答主
回答量:1931
采纳率:50%
帮助的人:1853万
展开全部
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;");
}

}
515133498
2011-12-31 · TA获得超过121个赞
知道小有建树答主
回答量:436
采纳率:0%
帮助的人:95.2万
展开全部
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少
2011-12-31
知道答主
回答量:9
采纳率:0%
帮助的人:1.4万
展开全部
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'");
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式