AngularJS ng-model 指令
ng-model 指令用于綁定應(yīng)用程序數(shù)據(jù)到 HTML 控制器(input, select, textarea)的值。
ng-model 指令
ng-model
指令可以將輸入域的值與 AngularJS 創(chuàng)建的變量綁定。
AngularJS 實(shí)例
<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>
名字: <input ng-model="name">
</div>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.name = "John Doe";
});
</script>
嘗試一下 ?
雙向綁定
雙向綁定,在修改輸入域的值時(shí), AngularJS 屬性的值也將修改:
AngularJS 實(shí)例
<div ng-app="myApp" ng-controller="myCtrl">
名字: <input ng-model="name">
<h1>你輸入了: {{name}}</h1>
</div>
名字: <input ng-model="name">
<h1>你輸入了: {{name}}</h1>
</div>
嘗試一下 ?
驗(yàn)證用戶輸入
AngularJS 實(shí)例
<form ng-app="" name="myForm">
Email:
<input type="email" name="myAddress" ng-model="text">
<span ng-show="myForm.myAddress.$error.email">不是一個(gè)合法的郵箱地址</span>
</form>
Email:
<input type="email" name="myAddress" ng-model="text">
<span ng-show="myForm.myAddress.$error.email">不是一個(gè)合法的郵箱地址</span>
</form>
嘗試一下 ?
以上實(shí)例中,提示信息會(huì)在 ng-show
屬性返回 true
的情況下顯示。
應(yīng)用狀態(tài)
ng-model
指令可以為應(yīng)用數(shù)據(jù)提供狀態(tài)值(invalid,
dirty, touched, error):
AngularJS 實(shí)例
<form ng-app="" name="myForm" ng-init="myText = 'test@w3cschool.cn'">
Email:
<input type="email" name="myAddress" ng-model="myText" required></p>
<h1>狀態(tài)</h1>
{{myForm.myAddress.$valid}}
{{myForm.myAddress.$dirty}}
{{myForm.myAddress.$touched}}
</form>
Email:
<input type="email" name="myAddress" ng-model="myText" required></p>
<h1>狀態(tài)</h1>
{{myForm.myAddress.$valid}}
{{myForm.myAddress.$dirty}}
{{myForm.myAddress.$touched}}
</form>
嘗試一下 ?
CSS 類
ng-model
指令基于它們的狀態(tài)為 HTML 元素提供了 CSS 類:
AngularJS 實(shí)例
<style>
input.ng-invalid {
background-color: lightblue;
}
background-color: lightblue;
}
</style>
<body>
<form ng-app="" name="myForm">
輸入你的名字:
<input name="myAddress" ng-model="text" required>
</form>
<body>
<form ng-app="" name="myForm">
輸入你的名字:
<input name="myAddress" ng-model="text" required>
</form>
嘗試一下 ?
ng-model
指令根據(jù)表單域的狀態(tài)添加/移除以下類:
- ng-empty
- ng-not-empty
- ng-touched
- ng-untouched
- ng-valid
- ng-invalid
- ng-dirty
- ng-pending
- ng-pristine
更多建議: