Сообщение от Djambulat
|
Почему не работает?
|
У меня все работает...
<!DOCTYPE html>
<html ng-app='app'>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251' />
<script src="https://code.angularjs.org/1.3.9/angular.min.js"></script>
<style type='text/css'>
.test {
color: red;
}
</style>
<script type='text/javascript'>
var app = angular.module('app', []);
app.controller(
'ctrl',
[
'$scope',
function($scope) {
$scope.test=false;
$scope.onOff=function(Val){
$scope.test=!$scope.test;
};
}
]
);
</script>
</head>
<body ng-controller='ctrl'>
<button ng-click='onOff()'>On|Off</button>
<div ng-class='{"test": test}'>Test</div>
</body>
</html>