AngularJS Tutorial - Indicate true value with ng-true-value








The following code shows how to indicate true value with ng-true-value.

Example


<!-- ww w. j a  va 2s  . c  o  m-->
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.js"></script>

</head>
<body>
  <div ng-app ng-controller="x">
    <input type="checkbox" ng-model="y" ng-true-value="1" ng-false-value="0"> {{y}}
</div>
<script type='text/javascript'>
function x($scope) {
    $scope.y = '1';
}
</script>
</body>
</html>

The code above is rendered as follows: