2017-02-08 54 views
0

我想設置的className:主動選擇通過納克級,像這樣: ng-class='{"className:active" : true}'角組:吳類CSS的主動選擇

+0

不要以爲你可以/可以做到這一點。請解釋你的用例,你爲什麼要這麼做?你可以設置'.focus()',那麼它就是活動元素。 – devqon

回答

0

我猜ÿ你必須通過創建與你的:active僞類具有完全相同屬性的類來「僞造」它。

0

試試這個:

ng-class="{'active':true}" 

的變量,你可以嘗試

<!-- add a class to the first item --> 
<ul> 
    <li ng-class="{ 'text-success': $first }" ng-repeat="item in items">{{ item.name }}</li> 
</ul> 

<!-- add a class to the last item --> 
<ul> 
    <li ng-class="{ 'text-danger': $last }" ng-repeat="item in items">{{ item.name }}</li> 
</ul> 

<!-- add a class to the even items and a different class to the odd items --> 
<ul> 
    <li ng-class="{ 'text-info': $even, 'text-danger': $odd }" ng-repeat="item in items">{{ item.name }}</li> 
</ul> 

for more options

+0

Doest似乎在我的課上設置了:主動選擇器 –