Heim > Fragen und Antworten > Hauptteil
var str="hello";
var obj={
str:"world",
saidstr:this.str
};
alert(obj.saystr); //Das Ergebnis ist hallo
Entschuldigen Sie, warum das Ergebnis „Hallo“ statt „Welt“ ist
漂亮男人2017-05-19 10:28:19
this
指向什么,由包含它的最近的一个function
决定的;
如果没找到function
,那么this
就是全局对象。
你的题目中,就是后者。
稍微修改一下代码:
var str="hello";
var obj={
str:"world",
saystr: function() {
alert(this.str)
}
};
obj.saystr();
就是第一种情况了。
总结一下:确定this
通常分两步走:
先找到包含this
的最近的一个function
;
然后看这个function
被调用的方式。具体看这里。
伊谢尔伦2017-05-19 10:28:19
把题目转换成下面这样更好理解:
var str = "hello";
var obj = {};
obj.str = "world";
obj.saystr = this.str;
所以一看就明白this指向的是window全局对象,所以obj.saystr结果就是hello