通過seenimurugan給出的原始答案將是here和我已經更新了他的小提琴,使其動態。 工作example
<div class="section" ng-app="phonecatApp" ng-controller="PhoneListCtrl">
<div class="slide">
<div class="container">
<h2 class="section-title">Selected Mobiles</h2>
</div>
<div class="container-fluid fix ver2">
<div class="col-md-3 work-thumb" ng-repeat="phone in phones">
{{setCount($index)}}
<a href="#">{{phone.name}}</a>
</div>
</div>
</div>
<p>Count: {{count}}</p>
</div>
@Contrller
var phonecatApp = angular.module('phonecatApp', []);
phonecatApp.controller('PhoneListCtrl', function($scope) {
$scope.count = 0;
$scope.phones = [{
'name': 'Nexus S',
'snippet': 'Fast just got faster with Nexus S.'
},
{
'name': 'Motorola XOOM™ with Wi-Fi',
'snippet': 'The Next, Next Generation tablet.'
},
{
'name': 'MOTOROLA XOOM™',
'snippet': 'The Next, Next Generation tablet.'
}
];
});
我用從seenimurugan在原來的答案
這並沒有多大意義,創造了小提琴此代碼。您有幾個組,每個組都有不同數量的過濾字母。應顯示哪些數字? –
你應該已經完成了所有這些在你的控制器 –
我需要的總過濾器 –