簡體   English   中英

角度指令突出顯示div中的任何輸入是否具有焦點

[英]angular directive highlight if any of inputs in div has focus

我為帶有表單元素的可重復部分創建了一個角度指令,當div中的任何輸入字段都處於焦點時,我希望突出顯示整個部分/ div

template.html

<div class="col-md-12 employee-section">
<label for="name_{{$index}}">Name</label>
<input type="text" id="name_{{$index}}" class="col-md-6" ng-model="model.name"/>

<label for="address_{{$index}}">Address</label>
<input type="text" id="address_{{$index}}" class="col-md-6" ng-model="model.address"/>
</div>

指示

angular.module('test').directive('employee' , function(){
       return {
            link: function(scope, element){
            },
            restrict: 'AE',
            scope: {
                model: "="
            },
            templateUrl: 'template.html'
        };
 }

調節器

angular.module('test').controller('employeeCtrl' , function($scope){
    $scope.employees = [{name:'Jackk',address:'Main st'}, {name:'Jill',address:'Main st 123'}
});

HTML頁面

<div ng-repeat="employee in employees>
    <employee model="employee"></employee>
</div>

這是我在Plnkr鏈接中尋找的指令

app.directive('ngFocusModel', function () {
    return function (scope, element) {

      var focusListener = function () {
          scope.hasFocus = true;
          scope.$digest();
      };

      var blurListener = function () {
          scope.hasFocus = false;
          scope.$digest();
      };


      element[0].addEventListener('focus', focusListener, true);
      element[0].addEventListener('blur', blurListener, true);
   };
});

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM