var str="hello";var obj={ str:"world", saystr:this.str};alert(obj.saystr); / /結果是hello
請問結果為什麼是"hello",而不是"world"
闭关修行中......
這篇文章可以解決大部分 this 的問題。
this指向什么,由包含它的最近的一个function决定的;如果没找到function,那么this就是全局物件。 你的題目中,就是後者。
this
function
稍微修改一下程式碼:
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
這篇文章可以解決大部分 this 的問題。
this
指向什么,由包含它的最近的一个function
决定的;如果没找到
function
,那么this
就是全局物件。你的題目中,就是後者。
稍微修改一下程式碼:
就是第一種情況了。
總結一下:確定
this
通常分兩步驟走:先找到包含
;this
的最近的一个function
的最近的一個
被呼叫的方式。具體看這裡。function
然後看這個雷雷 雷雷
把題目轉換成下面這樣更好理解:
所以一看就明白this指向的是window全域對象,所以obj.saystr結果就是hello