我正试图通过切换类来切换侧边栏。在jQuery中我有:
$("[data-toggle]").click(function () {
var toggle_el = $(this).data("toggle");
$(toggle_el).toggleClass("open-sidebar");
});
想知道我如何用AngularJS实现同样的目标
答案 0 :(得分:1)
将ng-class
设置为变量:
ng-class="{'someClass' : scopeVar }"
点击scopeVar
并点击:
$scope.toggle = function() { $scope.scopeVar = !$scope.scopeVar }