gpt4 book ai didi

javascript - 表中的行计数器

转载 作者:行者123 更新时间:2023-12-01 02:37:44 25 4
gpt4 key购买 nike

如何向我的表添加一个简单的计数器。我想将此数字存储在变量中(如果可以仅使用 HTML)

HTML

<div class="table-responsive">
<table id="carTable" class="table table-bordred table-striped">
<thead>
<th>Car ID</th>
</thead>
<tbody>
<tr *ngFor="let car of cars">
<td>{{system.systemID}}</td>
</tr>
</tbody>
</table>
</div>

最佳答案

其实很简单:

<tr *ngFor="let car of cars; let i = index">
<td>{{system.systemID}}</td>
</tr>

现在i是你的计数器!

关于javascript - 表中的行计数器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47772451/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com