相当简单,但我无法弄清楚我需要谷歌的术语。如何引用调用控制器模糊函数的任何元素?
html
<body ng-app="test">
<div ng-controller="Cntrlr as cntrlr">
<input type="text" ng-model="cntrlr.inpt" ng-blur="cntrlr.blurr()" />
<input type="text" ng-model="cntrlr.second" ng-blur="cntrlr.blurr()" />
</div>
</body>
js
var app = angular.module("test", []);
app.controller("Cntrlr", ["$scope", function($scope){
this.blurr = function(){
alert("which input am I?");
alert("this is so meta.");
// ?
};
}]);
[编辑]
我意识到我的意思是比我更抽象,所以我创造了一个新问题,因为这个问题已经解决了