angular css 클래스와 스타일

421 단어
    ...
.menu-disabled-true {
    color: gray;
}
function MenuController($scope) {
    $scope.isDisabled = false;

    $scope.disabledIt = function() {
        $scope.isDisabled = true;
    }
}

좋은 웹페이지 즐겨찾기