Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,如果我访问同级范围scope.$$nextSibling- 我如何检索其相应的 HTML 部分,或执行修改,如添加类等?
scope.$$nextSibling
在控制器中,您可以获得控制器已应用于的元素:
.controller('MyController', function($element){});
我自己不会这样做,因为控制器不应该进行 dom 操作。我还没有找到一种方法来获取任意范围的元素,但也看不出为什么这会有用。