|
theMonths = new MakeArray(12)
// load array with English month names
function MakeArray(n) {
this[0] = "anuary"
this[1] = "February"
this[2] = "March"
this[3] = "April"
this[4] = "May"
this[5] = "June"
this[6] = "July"
this[7] = "August"
this[8] = "September"
this[9] = "October"
this[10] = "November"
this[11] = "December"
this.length = n
return this
}
這個是Java Script Bible 4th Edition上面的一段代碼.
這種this的用法 是怎么個意思?Javascript的this還有匿名obj的作用?
這樣的用法只能限于函數(shù)內部吧
拋出異常的愛 寫道
這樣就可以在別的地方用
代碼
var my = new Object ();
my.MakeArray= MakeArray;
my.MakeArray(10);
的確看到一個類似的用法
代碼
// create basic array
theMonths = new MakeArray(12)
如果this[]的用法,表示this是一個array object
那么
代碼
this.length = n
這個似乎讓this又成為了一個擁有一個array object 和一個 int 變量的 object了
this于是看上去像某個匿名class的object了
是否可以這樣理解呢?
JavaScript技術:this[] 指的是什么內容 討論,轉載需保留來源!
鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯(lián)系我們修改或刪除,多謝。