5

我如何以类似的方式(外部角度)获得DOM元素?Attributes$scope (angular.element(element).scope())

我需要这个,所以我可以$animator在插入的某些元素上使用服务DOM

我的代码部分如下所示:

var element = $compile(template,scope);
var attrs = ? // I would do element.attrs(), 
              // but this won't work as it does not perform normalization
var animation = $animator(scope,attrs);
animation.enter(element,parent);
4

1 回答 1

2

这对我有用,所以你只需要知道你正在寻找的属性......

console.log( angular.element(element)[0].getAttribute('class') );

实际上这也应该起作用:

var attrs = angular.element(element)[0].attributes;
于 2013-10-13T08:39:04.423 回答