首页 > Web开发 > 详细

AngularJS监听DOM加载完毕

时间:2016-08-03 23:45:02      阅读:837      评论:0      收藏:0      [点我收藏+]

直接上代码:

Module.directive(‘renderFinish‘, function ($timeout) {      //renderFinish自定义指令
    return {
        restrict: ‘A‘,
        link: function(scope, element, attr) {
            if (scope.$last === true) {
                $timeout(function() {
                    scope.$emit(‘ngRepeatFinished‘);
                });
            }
        }
    };
});
/* 控制器 */
nassModule.controller(‘mallHome‘, [‘$scope‘, ‘$http‘, function($scope, $http) {

    $scope.$on(‘ngRepeatFinished‘, function(){
        $scope.funName();
    });

}]);

 

<li ng-repeat="item in data.focus" render-finish>content</li>

 

AngularJS监听DOM加载完毕

原文:http://www.cnblogs.com/jach/p/5734964.html

(1)
(1)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!