只要输入元素的值发生更改,就会使用AngularJS中的ng-change指令。输入值发生变化时,将立即对表达式求值。它要求存在ng-model指令。只要输入中有任何单个更改,就会触发该事件。它可以与<input>,<textarea>,<checkbox>和<select>之类的输入元素一起使用。
用法:
<element ng-change="expression"> Contents... </element>
其中,表达式是指只要输入值更改就执行的表达式。
范例1:本示例使用ng-change指令通过复选框显示/隐藏某些内容。
<!DOCTYPE html>
<html>
<head>
<title>ng-change Directive</title>
<script src=
"https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js">
</script>
<script type="text/javascript">
var app = angular.module('geek', []);
app.controller('app', function ($scope) {
$scope.show = function () {
if ($scope.check == true)
$scope.result = true;
else
$scope.result = false;
}
});
</script>
</head>
<body style="padding:30px">
<div ng-app="geek" ng-controller="app">
<h1 style="color:green">GeeksforGeeks</h1>
<h2>ng-change Directive</h2>
Check to show/hide details <input type="checkbox"
ng-change="show()" ng-model="check">
<br><br>
<div style="padding:10px; border:1px solid black;
width:30%;color:green" ng-show='result'>
GeeksforGeeks is the computer science
portal for geeks.
</div>
</div>
</body>
</html>
输出:
在选中复选框之前:
选中复选框后:
范例2:本示例返回复选框状态更改的次数以及复选框的当前状态。
<!DOCTYPE html>
<html>
<head>
<title>ng-change Directive</title>
<script src=
"https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js">
</script>
</head>
<body ng-app="geek" style="text-align:center">
<h1 style="color:green">GeeksforGeeks</h1>
<h2>ng-change Directive</h2>
<div ng-controller="prop">
<div>
Are you a developer:
<input type="checkbox" ng-model="isTrue"
ng-change="cnt=cnt+1" ng-init="cnt=0"/>
</div>
Count:{{cnt}}
<pre>{{isTrue}}</pre>
</div>
<script>
var app = angular.module("geek", []);
app.controller('prop', ['$scope', function ($app) {
$app.isTrue = false;
}]);
</script>
</body>
</html>
输出:
在选中复选框之前:
选中复选框后:
相关用法
- AngularJS ng-if用法及代码示例
- AngularJS ng-cut用法及代码示例
- AngularJS ng-value用法及代码示例
- AngularJS ng-src用法及代码示例
- AngularJS ng-app用法及代码示例
- AngularJS ng-csp用法及代码示例
- AngularJS ng-jq用法及代码示例
- AngularJS ng-required用法及代码示例
- AngularJS ng-bind用法及代码示例
- AngularJS ng-srcset用法及代码示例
- AngularJS ng-paste用法及代码示例
- AngularJS ng-submit用法及代码示例
- AngularJS ng-style用法及代码示例
- AngularJS ng-selected用法及代码示例
注:本文由纯净天空筛选整理自Vishal Chaudhary 2大神的英文原创作品 AngularJS | ng-change Directive。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。