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);
这篇关于为什么这个代码指向窗口对象?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么这个代码指向窗口对象?


基础教程推荐
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01