1
我在我的反應項目中使用引導程序表。我有一個表,從標籤得到它的數據是這樣的:動態更改引導程序表的特定行的顏色
<Table className='flags-table' responsive hover>
<thead>
<tr>
<th></th>
<th> Time In</th>
<th> Time Out</th>
<th> Type</th>
<th> Category</th>
</tr>
</thead>
<tbody>
{
this.props.tag_fetch_reducer.tags.map((x, i) => (
<tr key={i} onClick={this.handleRowClick.bind(this, i)}>
<td>
<div className='red-box'></div>
</td>
<td> {this.secondsToHms(x.time)} </td>
<td> {this.secondsToHms(x.stopTime)} </td>
<td> {x.tagname} </td>
<td contentEditable="false"> {x.category}</td>
</tr>
))
}
</tbody>
</Table>
我想要什麼:
- 我有一個名爲tagIndex變量,它在一定的時間間隔後改變它的狀態。所以tagIndex的值不斷變化。該值可以從0到與表格行的最後一個索引相同的值。現在我想要的是每當tagIndex達到一定的值,我想改變該索引的行的顏色。
例如:tagIndex是5,那麼我應該看到第5行的顏色爲黃色,所有其他行的顏色爲白色。然後,當tagIndex改爲8時,我希望黃色轉移到第8行,而其他所有行都是白色的。我怎樣才能做到這一點?
只是一句話對你'