javascript - AngularJS 指令中的元素高度

标签 javascript jquery css angularjs

我试图在一个简单的 AngularJS 应用程序中获取元素的高度。 见下文。我究竟做错了什么?高度应该随着换行而不同,但无论我在“标签”数组中输入什么,我都会收到 20 的报告。

这里可以执行下面的代码,否则见下文。 http://js.do/code/49177

<!doctype html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <base href="/">

  <title>height of element in angularjs</title>

  <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">

  <script src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.8/angular.js"></script>
  <script src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.8/angular-route.js"></script>
  <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>

  <script type="text/javascript">
    'use strict';

    var app = angular.module('heightApp', ['ngRoute', 'routing']);

    app.controller('heightCtrl', ['$scope', function ($scope) {
      $scope.labels = [
        'Hi there, I\'m a div.',
        'Me too, I\'m also a div.',
        'Can you see me, because I certainly can\'t see myself. I don\'t even know my own height. Isn\'t that just crazy?'
      ];

    }]);    

    angular.module('routing', []).config(['$routeProvider', function($routeProvider) {
      $routeProvider
        .when('/', {
          templateUrl: 'height.html',
          controller: 'heightCtrl'
        });
    }]);

    angular.module('heightApp').directive('reportMyHeight', function() {
      return function (scope, el, attrs) {
          alert('offsetHeight = ' + el[0].offsetHeight);
        }
    })
  </script>

</head>

<body ng-app="heightApp">

<div class="container">
  <div ng-view></div>
</div>

</body>

<script type="text/ng-template" id="height.html">
  <div class="row">
    <div class="col-sm-4" report-my-height ng-repeat="lbl in labels">
      {{ ::lbl }}
    </div>
  </div>
</script>

</html>

最佳答案

您需要等到下一个摘要周期。当您在指令中立即执行此操作时,ng-repeat 内的插值​​ {{::lbl }} 还不会扩展。您可以将它放在 $timeout 中以关闭 applyDigest 参数。

例如:

angular.module('heightApp').directive('reportMyHeight', function($timeout) {
   return function (scope, el, attrs) {

      $timeout(init, false);

      //Initialization
      function init(){
        console.log('offsetHeight = ' + el[0].offsetHeight,  el.html());
      }

    }
});

Plnkr

关于javascript - AngularJS 指令中的元素高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27894755/

相关文章:

JavaScript 等效于 PHP __invoke

javascript - 为什么嵌套括号会导致此正则表达式中出现空字符串?

javascript - jQuery 过滤选择器,对吗?

jquery - 如何对特定元素使用 errorPlacement?

javascript - maps.googleapis.com 与 date.js 不兼容

javascript - 将这些常见的断言保存在一个单独的文件中并且不再重复是个好主意吗?

html - Bootstrap 输入组未正确分组

javascript - 我怎样才能隐藏卡片?

javascript - 如何在 ag-grid 中的一行内呈现 HTML?

html - 如何防止我的样式被周围 div 上的另一种样式覆盖?