GitHub 博客园 Nanakon

Angular在render完成之后,执行Js脚本

AngularJs中,如何在render完成之后,执行Js脚本

app.directive('onFinishRenderFilters', function ($timeout) {
    return {
        restrict: 'A',
        link: function(scope, element, attr) {
            if (scope.$last === true) {
                $timeout(function() {
                    scope.$emit('ngRepeatFinished');
                });
            }
        }
    };
});

 

posted on 2016-08-29 17:10  jzm17173  阅读(151)  评论(0编辑  收藏  举报

导航

轻音