js 改变gridview样式

10 篇文章 0 订阅
3 篇文章 0 订阅

  <%@ Page Language="C#" AutoEventWireup="true" CodeFile="BackgroundColor.aspx.cs" Inherits="_BackgroundColor" %>
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  <html xmlns="http://www.w3.org/1999/xhtml">
  <head>
   <title>BackgroundColor</title>
  </head>
  <body>
   <form id="form1" runat="server">
   <asp:GridView runat="server" ID="gvMeiMingZi"></asp:GridView>
   </form>
   <script type="text/javascript">
   //把事件放在onload里,因为我不知道JS如果直接写到这儿是不是会等页面加载完才执行
   //使用<%=%>方式输出GridView的ID是因为某些情况下(如使用了MasterPage)会造成HTML中ID的变化
   //颜色值推荐使用Hex,如 #f00 或 #ff0000
   window.onload = function(){
   GridViewColor("<%=gvMeiMingZi.ClientID%>","#fff","#eee","#6df","#fd6");
   }
  
        //参数依次为(后两个如果指定为空值,则不会发生相应的事件):
   //GridView ID, 正常行背景色,交替行背景色,鼠标指向行背景色,鼠标点击后背景色
   function GridViewColor(GridViewId, NormalColor, AlterColor, HoverColor, SelectColor)
   {
       //获取所有要控制的行
       var AllRows = document.getElementById(GridViewId).getElementsByTagName("tr");
      
       //设置每一行的背景色和事件,循环从1开始而非0,可以避开表头那一行
       for(var i=1; i<AllRows.length; i++)
       {
           //设定本行默认的背景色
           AllRows[i].style.background = i%2==0?NormalColor:AlterColor;
          
           //如果指定了鼠标指向的背景色,则添加onmouseover/onmouseout事件
           //处于选中状态的行发生这两个事件时不改变颜色
           if(HoverColor != "")
           {
               AllRows[i].onmouseover = function(){if(!this.selected)this.style.background = HoverColor;}
               if(i%2 == 0)
               {
                  AllRows[i].onmouseout = function(){if(!this.selected)this.style.background = NormalColor;}
               }
               else
               {
                  AllRows[i].onmouseout = function(){if(!this.selected)this.style.background = AlterColor;}
               }
           }
           //如果指定了鼠标点击的背景色,则添加onclick事件
           //在事件响应中修改被点击行的选中状态
           if(SelectColor != "")
           {
               AllRows[i].onclick = function()
               {
                   this.style.background = this.style.background==SelectColor?HoverColor:SelectColor;
                   this.selected = !this.selected;
               }
           }
       }
   }

   </script>
  </body>
  </html>
  BackgroundColor.aspx.cs
  用于生成一堆用于测试的数据,不然前面的GridView里啥也没有,就看不出效果了
  using System;
  using System.Data;
  public partial class _BackgroundColor:System.Web.UI.Page
  {
   protected void Page_Load(object sender, EventArgs e)
   {
   //生成DataTable并添加10个列
   DataTable dt = new DataTable();
   for(int i = 0; i < 10; i++)
   {
   dt.Columns.Add();
   }
   //往DataTable里添加20行数据
   for(int i = 0; i < 20; i++)
   {
   dt.Rows.Add(0, 1, 2, 3, 4, 5, 6, 7, 8, 9);
   }
   //将DataTable绑定到GridView
   gvMeiMingZi.DataSource = dt;
   gvMeiMingZi.DataBind();
   }
  }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值