HTML

<html>
  <head>
    <link href="StyleSheet.css" rel="stylesheet" type="text/css" />
    <script src="Jquery.js" type="text/javascript"></script>
    <script src="JavaScript.js" type="text/javascript"></script>
  </head>
  <title>斑马线</title>
  <body>
    <div id="bodydiv">
      <table cellspacing="0">
        <thead>
          <tr>
            <th>No</th>
            <th>Name</th>
            <th>Comments</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td>1</td>
            <td>Lost In The Plot</td>
            <td>The Dears</td>
          </tr>
          <tr>
            <td>2</td>
            <td>Poison</td>
            <td>The Constantines</td>
          </tr>
          <tr>
            <td>3</td>
            <td>Plea From A Cat Named Virtute</td>
            <td>The Weakerthans</td>
          </tr>
          <tr>
            <td>4</td>
            <td>Melissa Louise</td>
            <td>Chixdiggit!</td>
          </tr>
          <tr>
            <td>5</td>
            <td>Living Room</td>
            <td>Tegan And Sara</td>
          </tr>
          <tr>
            <td>6</td>
            <td>Speed</td>
            <td>Bran Van 3000</td>
          </tr>
          <tr>
            <td>7</td>
            <td>Fast Money Blessing</td>
            <td>King Cobb Steelie</td>
          </tr>
          <tr>
            <td>8</td>
            <td>Sore</td>
            <td>Buck 65</td>
          </tr>
          <tr>
            <td>9</td>
            <td>Love Travel</td>
            <td>Danko Jones</td>
          </tr>
          <tr>
            <td>10</td>
            <td>You Never Let Me Down</td>
            <td>Furnaceface</td>
          </tr>
        </tbody>
      </table>
    </div>
  </body>
</html>

CSS(StyleSheet.css)

body
{
width:100%;
height:100%;
margin:auto;
text-align:center;
}
#bodydiv
{
height:100%;
}

table
{
width: 100%;
}

JS(Jquery.js)

$(function(){
  //tr:eq(0)是指第一个tr eq=equal
  //tr:gt(0)是指除去第一个以外的所有tr gt=grater than
  $("tr:eq(0)").css("background-color","#8888ff"); //标题的样式
  $("tr:gt(0):even").css("background-color","#ffffcc"); //奇数行的样式
  $("tr:gt(0):odd").css("background-color","#ccccff"); //偶数行的样式
  $("tr:gt(0)").mouseenter(function(){
    var color = $(this).css("background-color");
    $(this).css("background-color","#5555ff");
    $(this).mouseleave(function(){
      $(this).css("background-color",color);
    });
    $(this).mousedown(function(){
      $(this).css("background-color","#2222ff");
    });
    $(this).mouseup(function(){
      $(this).css("background-color","#5555ff");
    });
  });
});

ref: http://www.cnblogs.com/lxblog/archive/2013/01/11/2856582.html

源码下载:http://files.cnblogs.com/zisezhixin/斑马线.zip

JQuery-Table斑马线的更多相关文章

  1. jQuery table td可编辑

    参考链接: http://www.freejs.net/ http://www.freejs.net/article_biaodan_34.html http://www.freejs.net/sea ...

  2. jquery.Table实现的翻页功能比较完整漂亮,本想扩展个模版DIV

    jquery.dataTable实现的翻页功能比较完整漂亮,本想提取其的翻页部分,再结合模版DIV,bootstrop实现聊天记息的展示. jquery.Table 与table结合的较紧,不能在很下 ...

  3. Jquery Table 的基本操作

    Jquery 操作 Html Table 是很方便的,这里对表格的基本操作进行一下简单的总结. 首先建立一个通用的表格css 和一个 表格Table: table { border-collapse: ...

  4. jquery table的隔行变色 鼠标事件

    一.鼠标事件 mouseover(function(){}); 鼠标移动到目标事件 mouseout(function(){}); 鼠标离开目标的事件 二.具体应用代码 <body> &l ...

  5. Jquery table元素操作-创建|数据填充|重置|隐藏行

    1.Jquery创建表格 /** * 创建表格 * @param label 标题 json格式,数据结构见附录1 * @param data 数据 json格式,数据结构见附录1 * @param ...

  6. jQuery,Table表头固定插件chromatable存在的问题及解决办法

    在最近的项目中需要将表格的表头固定,搜寻了大量的资料,发现chromatable插件还是比较方便的.但是当我在一个页面中多次使用 chromatable固定对个表格的表头时问题就出现了,首先说明系统的 ...

  7. jquery table 发送两次请求 解惑

    版本1.10 以下链接为一个较低版本解决方案: http://blog.csdn.net/anmo/article/details/17083125 而我的情况有点作, 情况描述: 1,一个页面两个t ...

  8. Jquery table相关--工时系统

    1.jquery 的弹出对话框,单击事件之后 if (confirm("确定要删除?")) { // //点击确定后操作 } 2.对某个table中的checkbox是否被选中的遍 ...

  9. 前端页面表格排序 jQuery Table 基础

    通常来说, 排序的方式有两种, 一种是我们在查询的时候就排好序,然后将数据渲染到前台页面上, 但是这样做有个弊端,就是在争对做好了缓存处理的系统, 在查询相同数据的时候进行排序,可能不能成功, 因为进 ...

  10. [Js/Jquery]table行转列

    摘要 在使用ews调用exhange的收件箱的并在h5页面显示邮件详情的时候,因为返回的每封邮件的内容都是htmlbody,没有textbody.每封邮件又没什么规律,用正则表达式来匹配内容并不合适, ...

随机推荐

  1. redhat linux 安装mysql5.6.27

    1.yum安装mysql(root身份) yum install mysql-server mysql-devel mysql -y 如没有配置yum,请参见博客:http://www.cnblogs ...

  2. C++初学者 const使用详解

     关于C++中的const关键字的用法非常灵活,而使用const将大大改善程序的健壮性,参考了康建东兄的const使用详解一文,对其中进行了一些补充,写下了本文. 1. const常量 如: cons ...

  3. paper 87:行人检测资源(下)代码数据【转载,以后使用】

    这是行人检测相关资源的第二部分:源码和数据集.考虑到实际应用的实时性要求,源码主要是C/C++的.源码和数据集的网址,经过测试都可访问,并注明了这些网址最后更新的日期,供学习和研究进行参考.(欢迎补充 ...

  4. 11---Net基础加强

    替换邮箱用户名部分: using System; using System.Collections.Generic; using System.Linq; using System.Text; usi ...

  5. DataTable 筛选数据

    //使用聚合函数 max ,sum  ,count .... private void ComputeBySalesSalesID(DataSet dataSet) {     // Presumes ...

  6. mybatis的xml中特殊转义字符和模糊查询like的写法

    做个备忘: xml特殊符号转义写法 <          < >          > <>   <> &      & &ap ...

  7. 夺命雷公狗---Thinkphp----9之中间层的创建,防止跨目录访问

    我们创建一个CommonController.class.php的中间层,让后让别的控制器都直接继承CommonController这个控制器即可决解跨目录访问的问题, <?php namesp ...

  8. linux中模块的相关操作

    /lib/modules/[kernel版本]/modules.dep 这个文件记录了模块的依赖关系 modprobe 和 insmod 这两个命令都可以加载模块,但是modeprobe会自动分析模块 ...

  9. zw版【转发·台湾nvp系列Delphi例程】HALCON OverpaintRegion1

    zw版[转发·台湾nvp系列Delphi例程]HALCON OverpaintRegion1 unit Unit1;interfaceuses Windows, Messages, SysUtils, ...

  10. 怎么开启PHP 的错误提示?

    怎么开启PHP 的错误提示?   在php.ini 修改error_reporting = E_ALL & ~E_NOTICEdisplay_errors = On重启apache服务器在运行 ...