有人可以指出我该怎么做吗?我的解决方案都不起作用。
我对Angularjs很新,感谢您提前耐心等待。
答案 0 :(得分:0)
我认为这就是你要找的东西
myApp = angular.module("myApp",[]);
myApp.controller(“myController”,function($ scope){ $ scope.textAreaValue =“hello World”;
$scope.textAreaChanged = function(){
console.log("textAreaChanged new value> " + $scope.textAreaValue);
}
$scope.textAreaBlurred = function(){
console.log("textAreaBlurred");
}
$scope.textAreaFocussed = function(){
console.log("textAreaFocussed");
}
});
完整代码,您可以here