程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> Asp.net GridView隔行變色和光棒效果2種方法實現

Asp.net GridView隔行變色和光棒效果2種方法實現

編輯:ASP.NET基礎
方法一:前台和後台配合使用
1.aspx 隔行變色屬性(<AlternatingRowStyle BackColor="#f5f5f5" />)
復制代碼 代碼如下:
<asp:GridView ID="gvProjectList" runat="server"
OnRowCreated="gvProjectList_RowCreated">
<AlternatingRowStyle BackColor="#f5f5f5" />
</asp:GridView>

1.aspx.cs 後台事件中設置鼠標至於某行上的變色效果
復制代碼 代碼如下:
protected void gvProjectList_RowCreated(object sender, GridViewRowEventArgs e)
{
e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor='#eaeaea';");//這是鼠標移到某行時改變某行的背景
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=currentcolor;");//鼠標移走時恢復
}

方法二:JQuery方式
1.aspx
首先引用 jQuery 函數庫,在http://jquery.com/ 下載,然後寫css樣式,再加入js代碼。
復制代碼 代碼如下:
<script src="jquery-1.5.2.min.js" type="text/javascript"></script>

復制代碼 代碼如下:
<style type="text/css">
.even {
background:#F5F5F5;
}
.odd {
background:#FFFFFF;
}
.over{
background:#CDE6FF;
}
.tr_chouse {
background:#6AB1FF;
}
</style>

復制代碼 代碼如下:
<script type="text/javascript">
$(document).ready(function(){
$(".gridview tr:odd").addClass("odd"); //奇數行設定為 "odd" 樣式
$(".gridview tr:even").addClass("even"); //偶數行設定為 "even" 樣式
$(".gridview tr").mouseover(function(){$(this).addClass("over");}) //當 mouseover 時加入 "over" 樣式
.mouseout(function(){$(this).removeClass("over");}) //當 mouseout 時移除 "over" 樣式
.click(function(){$(this).toggleClass("tr_chouse");}) //當 click 加入或移除 "tr_chouse" 樣式,實現數據列選取
});
</script>

2013年2月18日 13:57:30更新
復制代碼 代碼如下:
<script type="text/javascript">
$(function(){ $(".maingrid_text tr:even").addClass("even"); $(".maingrid_text tr:odd").addClass("odd");
$(".maingrid_text tr").hover(function(){$(this).addClass("table_hover")},function(){$(this).removeClass("table_hover")});
});
function EndRequestHandler(){
$(function(){ $(".maingrid_text tr:even").addClass("even"); $(".maingrid_text tr:odd").addClass("odd");
$(".maingrid_text tr").hover(function(){$(this).addClass("table_hover")},function(){$(this).removeClass("table_hover")});
});
}
function reload(){Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);}
$(document).ready(function() { reload(); })
</script>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved