Angularjs - 选择元素(textarea)并改变其价值

时间:2015-01-20 10:01:31

标签: angularjs

有人可以指出我该怎么做吗?我的解决方案都不起作用。

我对Angularjs很新,感谢您提前耐心等待。

1 个答案:

答案 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