按键上的角 - 火功能

时间:2015-09-01 10:59:58

标签: angularjs keypress

我想在角度按键上触发一个事件。在momemnt我有这个输入文本框:

  <input type="text" class="form-control input-sm"
      name="forenames"
      ng-model-options="{ updateOn: 'blur' }"
      ng-model="record.Forenames"
      ng-keyup="getInitials($event)">

这个功能:

$scope.getInitials = function () {
                           if ($scope.record.Forenames != null) {
                               $scope.record.Initials = $filter('genInitials')($scope.record.Forenames.replace(/[^\w\s]|_/g, ""), false);
                           } else {
                               $scope.record.Initials = "";
                           }

                       };

但它没有发射。有人对角有什么建议吗?

1 个答案:

答案 0 :(得分:0)

你可以使用ng-change来实现这个

https://docs.angularjs.org/api/ng/directive/ngChange