<input type="text" name="name" ng-model="inputname" ng-init="inputname='hello'">
<span>{{inputname}}</span>
<button type="button" name="button" ng-click="change()">改变值</button>
$scope.change=function(){
$scope.inputname="world";
}
$scope.$watch("$scope.inputname",function(newValue,oldValue){
console.log(newValue);
console.log(oldValue);
console.log($scope.inputname);
})
大家讲道理2017-05-15 17:06:38
$watch
Wrong method
$scope.$watch('inputname', function(newValue,oldValue){
console.log(newValue);
console.log(oldValue);
console.log($scope.inputname);
})