var str="hello";
var obj={
str:"world",
saystr:this.str
};
alert(obj.saystr); / /結果是hello
請問結果為什麼是"hello",而不是"world"
漂亮男人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