我想在页面加载后动态定义指令。
例如,在某些时候运行此任何页面加载应该为每个<a>
元素输出“链接”:
angular.module('myApp').directive('a', function() {
console.log('defining the directive');
return {
restrict: 'E',
controller: function() {
console.log('in a link');
}
};
});