标签: javascript
var a = function foo(){ this.confusing = 'hell yeah'; function boo(){ this... } }
在boo()内部调用的函数foo()中,将为this元素定义foo()吗?
boo()
foo()
this
答案 0 :(得分:0)
在boo函数内部,this将引用boo函数对象,或者将引用“窗口”。如果您熟悉的话,这类似于python中作用域的堆叠。
boo