0

我有一个简单的指令,可以在元素上切换一个类,在函数中使用 $(this) 或 'element' 会更好吗?(两者都工作正常)

这是示例:

.directive('test',['$rootScope',function($rootScope){
        return {
            restrict:'C',
            link: function(scope, element, attrs){
                return element.bind('click',function(){
                    element.toggleClass("active");
                });
            }
        }
    }])
4

0 回答 0