[ASP.NET][WebControl] GridView選擇列時變色
使用GridView,在呈現時,滑鼠移動在該列時,該列可以變換顏色,方便使用者觀看
{
//選擇列時變色
if (e.Row.RowIndex > -1)
{
e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor;this.style.backgroundColor='#e0e0ff'");
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=c;");
}
}
顏色代碼的部分,可參照http://www.color-hex.com/
呈現結果