NG-클래스 전환 2 개 단추각도 JS : I 한 버튼 (myCtrl.onactive 또는 myCtrl.offactive)가 true 겨 클래스이어야의 IT로 설정 "활성"클래스를 갖는 버튼 그룹이
<div class="btn-group pull-right">
<button ng-class="{active: myCtrl.onactive}" class="btn" ng-click="myCtrl.changeColorIcons()">on</button>
<button ng-class="{active: myCtrl.offactive}" class="btn" ng-click="myCtrl.changeColorIcons()">off</button>
</div>
내가 활성 클래스를 가질 클릭 중 버튼을 만들려고 노력하고있어 (다른 하나는하지 않음)
지금까지 내가 내 컨트롤러에이 노력하고있어 (작업 그러나 이것은 내가 후에 갈거야 무엇을하지), 더 좋은 방법이 있어야합니다 ...
self.onactive = true; //by default the "on" button is active
//but when a button is clicked turn the one that's active off and make the other active
this.changeColorIcons = function() {
(self.onactive) ? self.offactive = true; self.onactive = false; : self.onactive = true; self.offactive = false;
};