app.directive('ngBlur', function() {
return {
restrict: 'A',
require: 'ngModel',
link: function postLink(scope, element, attrs) {
element.bind('blur', function () {
scope.$apply(attrs.ngBlur);
});
}
};
});
<input type="text" ng-model="Input" ng-blur="changeInput(Input)" />
link: function postLink(scope, element, attrs, ctrl) {
var ngModel = ctrl;
element.bind('blur', function () {
// здесь можно получить параметры из ngModel через методы ngModelController
});
}