我有以下内容,其中我使用CSS将计数器添加到表中
HTML
db
body {
counter-reset: Serial;
}
tr td:first-child:before {
counter-increment: Serial;
/* Increment the Serial counter */
content: counter(Serial);
/* Display the counter */
}
要添加的JS动态更新表
<table class="table table-hover sortable" id="numbers">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">number#</th>
<th scope="col">Time</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
这给了我结果
第一栏是1,2,3 ....我 希望它是3,2,1,依此类推.....