<td>
テーブルに ng-repeat があります。クリックするとクラスを追加し、クリックしないとクラスを削除できるようにしたいと考えています。<td>
同時に複数選択できます。現在、すべての都市でクラスが適用されているか、または取得されていません。
例: (ノードに 100 個のアイテムがあるとします)
<tr ng-repeat node in nodes>
<td>{{node.name}}</td>
<td>{{node.date}}</td>
<td ng-click="toggleMe( node.city )" ng-class"{clicked : isClicked()}" >{{node.city}}</td>
</tr>
私のJSで
$scope.cityArr = [];
$scope.toggleMe = function(city) {
if ($scope.count > 0) {
angular.forEach($scope.cityArr, function(value) {
if (city === value) {
$scope.clicked = false;
} else {
$scope.cityArr.push(city);
$scope.clicked = true;
}
});
} else {
$scope.cityArr.push(city);
$scope.clicked = true;
}
$scope.count = 1;
};
$scope.isClicked = function() {
return $scope.clicked;
};