我正在尝试使用“ 24hrs”类更改表格行中文本的颜色。我使用jquery来查找文本,但是我无法弄清楚。
这是我正在使用的桌子
<table class="table" id="characters-table">
<thead>
<tr>
<th>Logo</th>
<th>Abbreviation</th>
<th>Coin</th>
<th>Price</th>
<th>Market Cap</th>
<th>24hr</th>
<th>More info</th>
</tr>
</thead>
<tbody>
<template id="all-characters-template">
{{#Data}}
<tr>
<td><img class="img-coin" src="https://www.cryptocompare.com{{CoinInfo.ImageUrl}}"/></td>
<td class="character-id">{{CoinInfo.Name}}</td>
<td>{{CoinInfo.FullName}}</td>
<td>{{DISPLAY.EUR.PRICE}}</td>
<td>{{RAW.EUR.MKTCAP}}</td>
<td class="24hrs">{{DISPLAY.EUR.CHANGEPCT24HOUR}}</td>
<td><button class="btn btn-info character-info-btn" data-toggle="modal" data-target="#myModal">More Info</button></td>
</tr>
{{/Data}}
</template>
我尝试过,但是找不到任何东西
console.log($("#all-characters-template").closest("tr").find(".24hrs").text());
预先感谢
答案 0 :(得分:1)
CSS类名不能以数字开头。
请参阅:Which characters are valid in CSS class names/selectors?
答案 1 :(得分:0)
如上所述,您尝试使用模板引擎的ID,而不是呈现的html元素的ID。因此,请尝试以下操作:
$('#characters-table tbody .24hrs').css('color', 'red');