AngularJS監聽DOM加載完畢


直接上代碼:

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>

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM