var str="hello";
var obj={
str:"world",
saystr:this.str
};
alert(obj.saystr); //结果是hello
请问结果为什么是"hello",而不是"world"
var str="hello";
var obj={
str:"world",
saystr:this.str
};
alert(obj.saystr); //结果是hello
请问结果为什么是"hello",而不是"world"
this
指向什么,由包含它的最近的一个function
决定的;
如果没找到function
,那么this
就是全局对象。
你的题目中,就是后者。
稍微修改一下代码:
var str="hello";
var obj={
str:"world",
saystr: function() {
alert(this.str)
}
};
obj.saystr();
就是第一种情况了。
总结一下:确定this
通常分两步走:
先找到包含this
的最近的一个function
;
然后看这个function
被调用的方式。具体看这里。
把题目转换成下面这样更好理解:
var str = "hello";
var obj = {};
obj.str = "world";
obj.saystr = this.str;
所以一看就明白this指向的是window全局对象,所以obj.saystr结果就是hello
8 回答4.6k 阅读✓ 已解决
6 回答3.3k 阅读✓ 已解决
5 回答2.8k 阅读✓ 已解决
5 回答6.3k 阅读✓ 已解决
4 回答2.2k 阅读✓ 已解决
4 回答2.7k 阅读✓ 已解决
3 回答2.4k 阅读✓ 已解决
这篇文章可以解决大部分 this 的问题。