Control a checkbox through value in scope

Description

You can control a checkbox through value in scope.

Example


<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.js"></script>
</head><!-- w w  w  .  j  av a  2s.  co  m-->
<body>
  <div ng-app ng-controller="x">
     <input type="checkbox" ng-checked="y"> {{y}}
  </div>
<script type='text/javascript'>
function x($scope) {
    $scope.y = 1;
}
</script>
</body>
</html>

Click to view the demo





















Home »
  AngularJS »
    AngularJS Example »




Controller
Directives
Expression
Filter
Form
Inject
Scope
Server
Style
Template
Utilities