Gridview 鼠标悬浮光棒效果

   代码

 1  protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
 2     {
 3 
 4  //如果是绑定数据行 
 5 
 6   if(e.Row.RowType == DataControlRowType.DataRow)
 7     {
 8 
 9 //鼠标经过时,行背景色变 
10        e.Row.Attributes.Add("onmouseover",
11         "currentcolor=this.style.backgroundColor;this.style.backgroundColor='#6699ff'");
12 
13 //鼠标移出时,行背景色变 
14        e.Row.Attributes.Add("onmouseout""this.style.backgroundColor=currentcolor");
15     }
16 
17     }
18 
19 

 

 

posted @ 2010-07-08 17:35  你妹的sb  阅读(226)  评论(0编辑  收藏  举报
百度一下