0
行をクリックして行を解除するときに、テーブルtrのCSSを変更しようとしています。 新生児であるため、私はそれに取り組むためのポインタを探しています。Angularjs toggle clickのCSSを変更する
<div ng-controller="MyCtrl">
Hello, {{name}}!
<table border=1 width=100%>
<tr ng-click="changeBackgroundOnToggle();"><td>Test Row 1</td></tr>
<tr ng-click="changeBackgroundOnToggle();"><td>Test Row 2</td></tr>
<tr ng-click="changeBackgroundOnToggle();"><td>Test Row 2</td></tr>
</table>
</div>
var myApp = angular.module('myApp',[]);
function MyCtrl($scope) {
$scope.name = 'Superhero';
$scope.changeBackgroundOnToggle= function(){
$(this).addClass(trBg);
}
}