AngularJS Tutorial - Disable text input by checkbox








The following code shows how to Disable text input by checkbox.

Example


<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.js"></script>
</head><!--from www  .  jav a 2s . c  o  m-->
<body>
  <div ng-app>
    <form>
        <input type="checkbox" ng-model="redirect" checked="checked">
        <input type="text" ng-disabled="redirect==false">
    </form>
</div>
</body>
</html>

The code above is rendered as follows: