当获取AngularJS指令中元素的height
时,我看到该值就好像它出现在relative
父级的范围内。如何根据显示元素的真height
获取元素的width
?
我有以下HTML,它将我的指令模板放入div
width: 200px
:
<div style="width:200px">
<inline-input-popover value="foo" width="350">
<p>Type string to insert into target. Here's some extra text to add length to the paragraph.</p>
</inline-input-popover>
</div>
这样做是为了在指令中显示该宽度内的静态元素,但是还有一个动态弹出框,我可以给它一个不同的宽度。这是我的指令模板:
<div class="inline-input-popover">
<input class="placeholder-input" type="text" ng-model="value" ng-focus="hasFocus=!hasFocus" />
<div class="inline-popover" outside-click="closePopover()" ng-click="keepFocus()" ng-show="hasFocus" ng-style="{width:{{width}}+'px'}">
<div class="inline-header" ng-transclude></div>
<input class="inline-input" type="text" ng-model="value" />
<button ng-click="closePopover()">Done</button>
</div>
</div>
我将ng-style
应用于absolute
定位的popover,根据指令传入的变量调整元素大小。
但是当我检查指令的inline-header
部分中link
元素的高度时:
var inlineInput = elem[0].getElementsByClassName('inline-input')[0];
console.log(inlineHeader.height());
...在应用ng-style
之前,我将元素的高度设为。
是否可以根据应用ng-style
?