AngularJS监视元素高度

时间:2015-06-19 05:55:30

标签: javascript jquery angularjs

我试图用AngularJS观察元素高度:

$scope.$watch(function(){return $("#content").outerHeight()}, 
    function(){$("#sidebar").outerHeight($("#content").outerHeight())},
    true);

调用该函数并更新#sidebar高度。但是,当#content高度发生变化时,它不会更新#sidebar高度。它仅在触发$apply()时更改。

如果#sidebar高度发生变化,我怎样才能更新#sidebar身高?

0 个答案:

没有答案