将ngClassEven和ngClassOdd等行为应用于ngOptions

时间:2015-06-11 13:41:37

标签: angularjs angularjs-ng-options

我想通过ngOptionsngClassEven将样式添加到ngClassOdd。我知道它们应该与ngRepeat一起工作,但同时我无法切换到ngRepeat。我见过这个answer,但它并不符合我的需要。

是否可以将ngClassEven和ngClassOdd等行为应用于ngOptions?

提前致谢。

1 个答案:

答案 0 :(得分:1)

你可以用普通的css

来做

你html

<select class="sel" ng-options="item in items" ng-model="selected">

你的css

.sel option:nth-child(even) {background: #ccc}
.sel option:nth-child(odd)  {background: #fff}