在带有 ng-repeat 的表格中,是否可以仅将一个单元格添加到一行?
在我的代码中:
<tbody>
<tr ng-repeat="user in users ng-click="selectUser(user)">
<td>{{user.username}}</td>
<td><input type="text"....></td>
<td><input type="checkbox"...></td>
<td><input type="submit" ... ng-show="user==selectedUser" /></td>
</tr>
</tbody>
在这段代码中,我希望最后一个td
只出现在选定的行上并且不影响其他行,这可能吗?或者它是 JS 或 CSS 的东西?