所以,首先,我确实有2张桌子。单击主表上的行时,将打开带有辅助表的模态窗口。辅助表包含日期列。如果日期等于"1111-11-11 / 11:11:11"
,则表示存在错误,因此行背景颜色应切换为红色。
这是在第一张桌子上点击一行后打开模态窗口的代码:
$(document).on('click', '#main-table tbody tr', function () {
var id = $(this).find("td").eq(0).text();
openPoolModal(id);
});
没什么复杂的。 openPoolModal
函数是我在控制台上打印日期以及尝试更改颜色的地方。
function openPoolModal(id){
$.ajax({
url: "/" + id,
success: function(data){
$("#PoolModalHolder").html(data);
$("#personalModal").modal();
$("#personalModal").modal('show');
$('#poolTable').DataTable({
some DataTables settings;
});
}
});
$("#poolTable tr").each(function(){
var col_val = $(this).find("td").eq(1).text();
console.log(col_val);
if (col_val == "1111-11-11 / 11:11:11"){
$(this).css( "background-color", "yellow" );
}
});
}
从ajax调用返回的html代码:
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title text-center" th:text="'Network: ' + ${poolHashrates[0].networkHashrate.id}">Network Id</h4>
</div>
<div class="modal-body">
<div class="table-responsive">
<table width="100%" class="table table-hover " id="poolTable">
<thead class="thead-inverse">
<tr>
<th class="col-md-2 text-center">Pool name</th>
<th class="col-md-2 text-center">Date from</th>
<th class="col-md-2 text-center">Hashrate [KH/s]</th>
</tr>
</thead>
<tbody>
<tr th:each="poolHashrate : ${poolHashrates}">
<td class="text-center" th:text="${poolHashrate.poolDef.name}"> Sample data</td>
<td class="text-center" th:text="${@getDataService.formatDate(poolHashrate.poolDef.dateFrom)}">Maven Street 10, Glasgow</td>
<td class="text-center" th:text="${@getDataService.formatHashrate(poolHashrate.hashrate)}">999-999-999</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
所以现在,实际上我遇到了两个问题。首先,在第一次点击mainTable行之后,没有真正发生任何事情。当我第二次单击时,第一次单击的日期将打印到控制台中。当我第三次点击时,第二次点击的日期会被打印,依此类推。
第二个问题是:
$(this).css( "background-color", "yellow" );
...似乎不起作用,因为它没有为背景着色。
答案 0 :(得分:0)
使用如下
$(this).css( "background", "yellow" );