AngularJS如何获取元素scrollHeight值?

时间:2015-03-30 09:29:30

标签: angularjs

我正在编写angularJS指令,在这个指令中我想获得angularJS中的选择列表框scrollHeight值,但它是未定义的。

我怎么能得到这个价值?我可以在jquery中获得这个值。

1 个答案:

答案 0 :(得分:7)

在指令链接功能中:

app.directive("scrollHeightDetector", function() {
     return {
       restrict : "AEC",
       link : function(scope, element, attrs) {
           // here you can use element to get the height

           var height = element[0].scrollHeight;


        }
    }
});