gpt4 book ai didi

javascript - 使用 Angular 根据重复项的数量设置类?

转载 作者:行者123 更新时间:2023-11-30 17:35:24 27 4
gpt4 key购买 nike

我有一个用 Angular.js 数据填充的表:

<table class="table">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="t in tabledata">
<td>00{{t.id}}</td>
<td>{{t.firstName}}</td>
<td>{{t.lastName}}</td>
<td><a href="">{{t.userName}}</a></td>
</tr>
</tbody>
</table>

如果数据行数 > 10,我想要做的是向 table 标记添加另一个类。

这可能吗,我该怎么做?我知道如何使用 jQuery 中的“平面”表来执行此操作,但我是 Angular 动态转发器的新手。

最佳答案

使用 ng-class

<table ng-class="{'newClassName' : tabledata.length > 10 }">

关于javascript - 使用 Angular 根据重复项的数量设置类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22154698/

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