我有一个由DataTables绘制的表格。对于每一行,表的最后一列是一个显示其他jquery元素的buttom(在我的例子中是bxslider,但这里没关系)。我希望能够在我点击它时改变行的颜色。我找到了一些解决方案,但这些只是在绘制DataTable之前改变颜色,而不是在已经绘制DataTables时运行。
buttoms有html类“onclick”。
我按如下方式绘制数据表:
我可以这样做吗?
$(div).DataTable({"data" : dataSet, "columns": columns})
谢谢你,问候。 麦克
答案 0 :(得分:3)
这样的事情会起作用吗?
//initialise datatables on DOM load
$(document).ready(function() {
$('#example').DataTable();
});
//on clicking the row
$("tbody tr").on("click", function() {
//loop through all td elements in the row
$(this).find("td").each(function(i) {
//toggle between adding/removing the 'active' class
$(this).toggleClass('active');
});
});

/* Set !important rule to override default colors */
.active {
background: gold !important;
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdn.datatables.net/1.10.16/js/jquery.dataTables.min.js"></script>
<link href="https://cdn.datatables.net/1.10.16/css/jquery.dataTables.min.css" rel="stylesheet" />
<table id="example" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</tfoot>
<tbody>
<tr>
<td>Tiger Nixon</td>
<td>System Architect</td>
<td>Edinburgh</td>
<td>61</td>
<td>2011/04/25</td>
<td>$320,800</td>
</tr>
<tr>
<td>Garrett Winters</td>
<td>Accountant</td>
<td>Tokyo</td>
<td>63</td>
<td>2011/07/25</td>
<td>$170,750</td>
</tr>
<tr>
<td>Ashton Cox</td>
<td>Junior Technical Author</td>
<td>San Francisco</td>
<td>66</td>
<td>2009/01/12</td>
<td>$86,000</td>
</tr>
</tbody>
</table>
&#13;
答案 1 :(得分:1)
$('#dataTable').on('click', 'tr', function () {
$(this).css("background-color", "#eeeeee");
});