Angularjs指令用于确定<div>

时间:2016-08-01 12:52:54

标签: javascript html css angularjs

我刚开始学习angularjs。我找到了更改字体大小的脚本,但该脚本更改了页面上的所有标记<p>。如何仅在<p>更改<div class="items-list">

myApp.directive('textSizeSlider', ['$document', function ($document) {
return {
    restrict: 'E',
    template: '<div class="text-size-slider"><span>Увеличение шрифта</span><input type="range" min="{{ min }}" max="{{ max }}" step="{{ step || 0 }}" ng-model="textSize" class="slider" value="{{ value }}" /></div>',
    scope: {
        min: '@',
        max: '@',
        unit: '@',
        value: '@',
        step: '@'
    },
    link: function (scope, element, attr) {
        scope.textSize = scope.value;

        scope.$watch('textSize', function (size) {
            $document[0].body.style.fontSize = size + scope.unit;
        });
    }
}

}]);

  <text-size-slider min="12" max="24" unit="px" value="18" step="0">

  

2 个答案:

答案 0 :(得分:0)

在您的监视功能中,您可以获取该类名称的元素,并且您可以应用更改。喜欢这个

 scope.$watch('textSize', function (size) {
      var elementResult = element[0].getElementsByClassName('items-list');
            elementResult.style.fontSize = size + scope.unit;
   });

答案 1 :(得分:0)

虽然你最好只使用CSS,但这里是如何将它限制在活动范围内:

scope.$watch(function() {
  return scope.textSize;
}, function(newTextSize, oldTextSize) {

  var paragraphs = element[0].querySelector('.items-list').getElementsByTagName('p');

  var length = paragraphs.length,
      p, i;

  for (i = 0; i < length; i++) {

    p = paragraphs[i];

    p.style.fontSize = size + scope.unit;
  };
});