admin管理员组文章数量:1346316
This is taken from John Resig`s Learning Advanced Javascript #25, called changing the context of a function.
1) in the line fn() == this
what does this refer to? is it referring to the this inside the function where it says return this?
2) although I understand the purpose of the last line (to attach the function to a specific object), I don't understand how the code does that. Is the word "call" a pre-defined JavaScript function? In plain language, please explain "fn.call(object)," and explicitly tell me whether the object in parens (object)
is the same object as the var object
.
3). After the function has been assigned to the object, would you call that function by writing object.fn();
?
var object = {};
function fn(){
return this;
}
assert( fn() == this, "The context is the global object." );
assert( fn.call(object) == object, "The context is changed to a specific object."
This is taken from John Resig`s Learning Advanced Javascript #25, called changing the context of a function.
1) in the line fn() == this
what does this refer to? is it referring to the this inside the function where it says return this?
2) although I understand the purpose of the last line (to attach the function to a specific object), I don't understand how the code does that. Is the word "call" a pre-defined JavaScript function? In plain language, please explain "fn.call(object)," and explicitly tell me whether the object in parens (object)
is the same object as the var object
.
3). After the function has been assigned to the object, would you call that function by writing object.fn();
?
var object = {};
function fn(){
return this;
}
assert( fn() == this, "The context is the global object." );
assert( fn.call(object) == object, "The context is changed to a specific object."
Share
Improve this question
edited Mar 17, 2011 at 3:41
Asaph
163k25 gold badges203 silver badges204 bronze badges
asked Mar 17, 2011 at 3:37
mjmitchemjmitche
2,0676 gold badges25 silver badges31 bronze badges
1 Answer
Reset to default 10call
is a function defined for a Function
object. The first parameter to call
is the object that this
refers to inside the function being called.
When fn()
is called without any particular context, this
refers to the global context, or the window
object in browser environments. Same rules apply for the value of this
in the global scope. So in fn() == this)
, this
refers to the global object as well. However, when it is called in the context of some other object, as in fn.call(object)
, then this
inside fn
refers to object
.
fn.call(object)
does not modify or assign anything to object
at all. The only thing affected is the this
value inside fn
only for the duration of that call. So even after this call, you would continue calling fn()
as regular, and not as object.fn()
.
The example simply demonstrates that the this
value inside a function is dynamic.
本文标签: Changing the context of a function in JavaScriptStack Overflow
版权声明:本文标题:Changing the context of a function in JavaScript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743829798a2546313.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论