ng-model 指令用于绑定应用程序数据到 HTML 控制器(input, select, textarea)的值。
ng-model 指令
ng-model 指令可以将输入域的值与 AngularJS 创建的变量绑定。
AngularJS 实例
- <div ng-app="myApp" ng-controller="myCtrl">
- 名字: <input ng-model="name">
- </div>
- <script>
- var app = angular.module('myApp', []);
- app.controller('myCtrl', function($scope) {
- $scope.name = "John Doe";
- });
- </script>
双向绑定
双向绑定,在修改输入域的值时, AngularJS 属性的值也将修改:
AngularJS 实例
- <div ng-app="myApp" ng-controller="myCtrl">
- 名字: <input ng-model="name">
- <h1>你输入了: {{name}}</h1>
- </div>
验证用户输入
AngularJS 实例
以上实例中,提示信息会在 ng-show 属性返回 true 的情况下显示。
应用状态
ng-model 指令可以为应用数据提供状态值(invalid, dirty, touched, error):
CSS 类
AngularJS 实例
- <style>
- input.ng-invalid {
- background-color: lightblue;
- }
- </style>
- <body>
- <form ng-app="" name="myForm">
- 输入你的名字:
- <input name="myAddress" ng-model="text" required>
- </form>
ng-model 指令根据表单域的状态添加/移除以下类:
ng-empty
ng-not-empty
ng-touched
ng-untouched
ng-valid
ng-invalid
ng-dirty
ng-pending
ng-pristine
本站欢迎任何形式的转载,但请务必注明出处,尊重他人劳动成果
转载请注明: 文章转载自:爱思资源网 http://www.aseoe.com/show-69-782-1.html
转载请注明: 文章转载自:爱思资源网 http://www.aseoe.com/show-69-782-1.html