0
這裏是我的HTML:顯示和隱藏NG-重複週期的元素
<ul class="no-bullet">
<li ng-repeat="(group, count) in info.info">
<a href="#" ng-click="getQuestions(group)"
ng-mouseenter="showGroupPanel()" ng-mouseleave="hideGroupPanel()"
>{{group}} ({{count}}) </a>
<div class="group_panel" ng-show="hoveringGroup">
<i class="fa fa-check"></i>
<i class="fa fa-folder-o"></i>
</div>
</li>
這裏是我的JS:
$scope.hoveringGroup = false;
$scope.showGroupPanel = function() {
$scope.hoveringGroup = true;
}
$scope.hideGroupPanel = function() {
$scope.hoveringGroup = false;
}
當列表額外的div元素的用戶鼠標懸停一個(group_panel ) 被展示。但它顯示列表的所有元素。我如何解決它只顯示列表中的一個元素(鼠標懸停)的「組面板」div?