下面是代码,我想计算div的高度。我已经创建了一些需要帮助的代码。如何调用myDirective
并将结果返回给特定的div
我的指示,
angular.module('myModule', [])
.directive('myDirective', function($timeout) {
return {
restrict: 'A',
link: function(scope, element) {
var sectioHeight=angular.element(document.querySelector('#header'))[0].offsetHeight;
console.log(angular.element(document.querySelector('#header'))[0].offsetHeight);
}
};
});
查看部分
<body ng-app="myModule">
<div id="header">//In this section I want that height
<h1 my-directive>Hello Plunker!</h1>
<h1 my-directive>Hello Plunker!</h1>
<h1 my-directive>Hello Plunker!</h1>
<div>
</body>