判断AngularJS渲染页面完成

$scope.$on('$viewContentLoaded', function(){

});

// 或者
$scope.$watch('$viewContentLoaded', function() {  

});  

  

原文地址:https://www.cnblogs.com/ssrsblogs/p/6061231.html