使用ng-repeat索引作为类名?

时间:2022-12-27 18:55:25

Is it possible to use the $index of ng-repeat in the class name?

是否可以在类名中使用ng-repeat的$ index?

Example:

例:

ng-class="{'hand-' + $index: true}"

Thank you!

谢谢!

2 个解决方案

#1


15  

You can use it like this:

你可以像这样使用它:

ng-class="['hand-' + $index]"

Additionally, you can use the class attribute to interpolate the class value

此外,您可以使用class属性来插入类值

class="hand-{{$index}}"

#2


1  

You can use within html class:

你可以在html类中使用:

class="list-{{$index}}"

for Angular use:

用于角度使用:

ng-class="['hand-' + $index]"

#1


15  

You can use it like this:

你可以像这样使用它:

ng-class="['hand-' + $index]"

Additionally, you can use the class attribute to interpolate the class value

此外,您可以使用class属性来插入类值

class="hand-{{$index}}"

#2


1  

You can use within html class:

你可以在html类中使用:

class="list-{{$index}}"

for Angular use:

用于角度使用:

ng-class="['hand-' + $index]"