why the code this point to window object?(为什么这个代码指向窗口对象?)
问题描述
我的代码是:
var length = 20;
function fn(){
console.log(this.length);
}
var o = {
length:10,
e:function (fn){
fn();
arguments[0]();
}
}
o.e(fn);
输出是20,1,谁能告诉我为什么?
the output is 20,1,who can tell me why?
推荐答案
当 this 关键字出现在函数内部时,其值取决于函数的调用方式.
When the this keyword occurs inside a function, its value depends on how the function is called.
在您的情况下,调用 fn() 时未提供 this 值,因此默认值为 window.使用 arguments[0](),上下文是 arguments 对象,其长度为 1.
In your case, fn() is called without providing the a this value, so the default value is window.
With arguments[0](), the context is the arguments object, whose length is 1.
关键是函数在哪里被调用并不重要,重要的是函数如何被调用.
The point is it does not matter where the function is called, but it matters how the function is called.
var length = 20;
function fn(){
console.log(this.length);
}
var o = {
length:10,
e:function (fn){
fn(); // this will be the window.
arguments[0](); // this will be arguments object.
}
}
o.e(fn);
此外,如果您希望 this 成为对象 o,您可以使用 call 或 apply, 或者先绑定一个对象.
Further more, if you want this to be the object o, you could use call or apply, or bind an object first.
var length = 20;
function fn(){
console.log(this.length);
}
var o = {
length:10,
e:function (fn){
var fn2 = fn.bind(this);
fn.call(this); // this in fn will be the object o.
fn.apply(this); // this in fn will be the object o.
fn2(); // this also will be the object o.
}
}
o.e(fn);
这篇关于为什么这个代码指向窗口对象?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么这个代码指向窗口对象?
基础教程推荐
- 什么是不使用 jQuery 的经验技术原因? 2022-01-01
- 为什么我在 Vue.js 中得到 ERR_CONNECTION_TIMED_OUT? 2022-01-01
- 如何使用 CSS 显示和隐藏 div? 2022-01-01
- 每次设置弹出窗口的焦点 2022-01-01
- WatchKit 支持 html 吗?有没有像 UIWebview 这样的控制器? 2022-01-01
- 如何使用sencha Touch2在单页中显示列表和其他标签 2022-01-01
- 如何在特定日期之前获取消息? 2022-01-01
- Node.js 有没有好的索引/搜索引擎? 2022-01-01
- Javascript 在多个元素上单击事件侦听器并获取目标 2022-01-01
- jQuery File Upload - 如何识别所有文件何时上传 2022-01-01
