动态定义Angular指令

时间:2014-03-19 11:05:30

标签: javascript angularjs angularjs-directive

我想在页面加载后动态定义指令。

例如,在某些时候运行此任何页面加载应该为每个<a>元素输出“链接”:

angular.module('myApp').directive('a', function() {
    console.log('defining the directive');
    return {
        restrict: 'E',
        controller: function() {
            console.log('in a link');
        }
    };
});

0 个答案:

没有答案