angularjs $window.height未定义

前端之家收集整理的这篇文章主要介绍了angularjs $window.height未定义前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
$ window.height未定义。哪里有问题?
FoodSearchControllers.controller('homeCtrl',['$scope','$http','$window','filterArgs',function($scope,$http,$window,filterArgs) {
  $scope.popupHeight = $window.height;
  console.log($scope.popupHeight);
}]);
$windowWindow的包装器,Window没有height属性。你可以使用innerHeight,如:$ scope.popupHeight = $ window.innerHeight;
原文链接:https://www.f2er.com/angularjs/146070.html

猜你在找的Angularjs相关文章