欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

AngularJS之$watch方法(监控动作)

程序员文章站 2022-05-10 18:17:32
...
1、问题背景

AngularJS中的$watch方法来监听数据变化


2、实现源码

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>AngularJS之$watch方法(监控动作)</title>
		<script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script>
		<style>
			body{
				font-size: 12px;
				font-family: "微软雅黑";
				background-color: #F8EFC0;
				backface-visibility: visible;
			}
			p{
				margin: 10px 10px 10px 10px;
			}
		</style>
		<script>
			var app = angular.module("watchApp",[]);
			app.controller("watchCon",['$scope',function($scope){
				$scope.count = 0;
				$scope.username = "";
				$scope.$watch('username',function(){
					$scope.count++;
				});
			}]);
		</script>
	</head>
	<body ng-app="watchApp">
		<p ng-controller="watchCon">
			<p>
				<input type="text" id="username" ng-model="username" maxlength="12" autocomplete="on"/>
			</p>
			<p>
				{{count}}
			</p>
		</p>
	</body>
</html>


3、实现结果

(1)初始化

AngularJS之$watch方法(监控动作)

(2)改变输入框值

AngularJS之$watch方法(监控动作)

以上就是AngularJS之$watch方法(监控动作)的内容,更多相关内容请关注PHP中文网(www.php.cn)!