asp.net下让Gridview鼠标滑过光棒变色效果

只有经受过冰霜的人,才会领悟太阳的温暖,只有饱尝人生艰辛的人,才会懂得生命的可贵。早安!

//光棒效果
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor='#FFFDD7'");
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=currentcolor");
}
}

以上就是asp.net下让Gridview鼠标滑过光棒变色效果。任何打击都不应该成为你堕落的借口。更多关于asp.net下让Gridview鼠标滑过光棒变色效果请关注haodaima.com其它相关文章!

标签: 鼠标 滑过