备用表格行颜色更改

时间:2015-01-09 07:31:48

标签: jquery html css

我创建了一个如下表单,我想要交替更改行颜色。我已经添加了jquery脚本但它不起作用。我不知道有什么不对。请有人解决这个问题。

提前致谢。

Home.html中

<!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>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <link rel="stylesheet" href="jquery.dataTables.css" type="text/css" />
    <script type="text/javascript" src="jquery-1.11.1.min.js"></script>
    <script type="text/javascript" src="jquery.dataTables.min.js"></script>
    <script type="text/javascript">
    $(document).ready(function() 
{
        $('#example').dataTable();
    } );
    </script>
<script type="text/javascript">
$(function(){
  $("table.dataTable tbody tr :even").addClass("d0");
   $("table.dataTable tbody tr :odd").addClass("d1");
});
</script>
</head>
<body>
<table id="example" class="row-border" cellspacing="0" width="100%">
        <thead>
            <tr>
<th>Client</th>
                <th>Financial Year</th>
                <th>Short Description</th>
                <th>Full Description</th>
                <th>File Upload</th>
                <th>Assign TO</th>
                <th>Action</th>
            </tr>
        </thead>
        <tbody>
        **<tr class="d0">**
            <td>C1</td>
            <td>2014-15</td>
            <td>Hi</td>
            <td>Hello</td>
            <td>Information.pdf</td>
            <td>P232</td>
            <td>Edit</td>
        </tr>
        **<tr class="d1">**
            <td>C2</td>
            <td>2015-16</td>
            <td>Hi</td>
            <td>Hello</td>
            <td>Tech.xls</td>
            <td>P17</td>
            <td>Edit</td>
        </tr>
        </tbody>
    </table>
</body>
</html>

的style.css

table.dataTable tbody tr {
  background-color: #FFC;
}

4 个答案:

答案 0 :(得分:0)

你可以使用这种风格

tr:nth-child(even) {
  color: white;
  background: black;
  }

答案 1 :(得分:0)

你只能用CSS来实现:

#example tr:nth-child(odd) { background-color: #FFC }

答案 2 :(得分:0)

简单地使用这样的。为什么需要使用jquery ??

 table.dataTable tbody tr { background-color: #FFC }
 table.dataTable tbody tr:nth-child(2n) { background-color:grey }

DEMO

答案 3 :(得分:0)

您可以在css文件中使用两个不同的类:

table.dataTable tbody tr.d0 {
  background-color: #FFC;
}
table.dataTable tbody tr.d1 {
  background-color: #FFF;
}