0
我有一個需要突出顯示重複值的數組。這是我迄今爲止..在Angular JS中突出顯示已過濾的行
HTML
<tr ng-repeat="x in names | unique: 'names'" >
<td> {{ x }} </td>
</tr>
<style>
.duplicate{
background: yellow;
}
</style>
控制器:
angular.module('myApp', []).controller('nameCtrl', function($scope) {
$scope.names = [
'Bob',
'Dan',
'Philip',
'Philip',
];
});
編輯:在上面"Philip"
的例子被突出顯示,並會對duplicate
你在這裏面臨什麼問題? –
請看看上面的更新。 – user2682610
首先在你的標籤中使用'class =「」'或者使用'ng-class =「」' –