0
我是角的新手。我想在ng類中爲特定類應用條件。如何在特定類的ng類中應用條件?
這裏是代碼: -
<div class="main-tb-div tab-pane fade in active" id="fdDiv">
我要動態地添加in
和active
類。
出頭,如: -
<div ng-class="advisory-tab-n tab-pane fade {'in':$root.mainSegment=='fd', 'active':$root.mainSegment=='fd'}" id="fdDiv">
在div元素的class屬性中放置了「advisory-tab-n tab-pane fade」,就是這樣。 – Darkves