angular.js - angular ng-repeat改变某个的背景颜色
为情所困
为情所困 2017-05-15 16:58:27
0
4
796


如图所示,上面的5个块,用ng-repeat循环输出,怎样实现当点击某一块(如块2)时,该块的背景颜色变为红色?其他的块的颜色不变。
谢谢指点。

为情所困
为情所困

reply all(4)
大家讲道理

There are too many methods, ng-click, ng-class, directive can be implemented.
This is a direct method, for reference only
html:

<p>
    <span ng-class="{'selected':selected==s}" ng-repeat="s in list" ng-bind="s" ng-click="changeStatus(s)"></span>
</p>

js

$scope.list = [1,2,3,4,5];
$scope.changeStatus = function(index){
    $scope.selected = index;
}
黄舟

Add click event. Pass the $index and $event of the current loop. Then it's OK to handle it yourself through angular jq.

phpcn_u1582

Give you a ready-made code:
HTML

<p class='options'>
    <span class='option' ng-class="{'selected':s._selected}" ng-repeat="s in orderStatus" ng-bind="s.l" ng-click="clickStatus(s)"></span>
</p>

JS

$scope.clickStatus = function(prop) {
    prop._selected = !prop._selected;
};

CSS

.option{display:inline-block;border:1px solid green;padding:.25em;margin:.5em .5em 0 0;}
.option.selected{background:green;color:white;}

I am planning to write a directive to do this

世界只因有你

http://runjs.cn/detail/yfnwk6ho

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template