码迷,mamicode.com
首页 > Web开发 > 详细

从浏览器的console获取angularjs的scope

时间:2014-07-02 14:53:37      阅读:443      评论:0      收藏:0      [点我收藏+]

标签:blog   http   java   javascript   html   for   

http://ionicframework.com/blog/angularjs-console/

1: Access Scopes

We can access any scope (even isolated ones!) on the page with a simple JS one-liner:

> angular.element(targetNode).scope()
-> ChildScope {$id: "005", this: ChildScope, $$listeners: Object, $$listenerCount: Object, $parent: Scope}

Or for isolated scopes:

> angular.element(targetNode).isolateScope()
-> Scope {$id: "009", $$childTail: ChildScope, $$childHead: ChildScope, $$prevSibling: ChildScope, $$nextSibling: Scope}

Where targetNode is a reference to an HTML Node. You can grab one easily using document.querySelector().

从浏览器的console获取angularjs的scope,布布扣,bubuko.com

从浏览器的console获取angularjs的scope

标签:blog   http   java   javascript   html   for   

原文地址:http://www.cnblogs.com/yoyogis/p/3820013.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!