动漫人物
通过一行简单的JS程序访问页面中任何作用域(甚至是隔离的作用域!):1 > angular.element(targetNode).scope()2 -> ChildScope {$id: "005", this: ChildScope, $$listeners: Object, $$listenerCount: Object, $parent: Scope…}对于隔离作用域:1 > angular.element(targetNode).isolateScope()2 -> Scope {$id: "009", $$childTail: ChildScope, $$childHead: ChildScope, $$prevSibling: ChildScope, $$nextSibling: Scope…}这里用`targetNode`作为HTML节点的引用。你可以非常轻松的通过`document.querySelector()`来创建一个`targetNode`