我搜索了一個小時,現在(W/O任何成功),我不知道怎麼可以定義在其它對象的對象(在JavaScript):Javascript對象在其他對象
function UserStat(arr) {
var arrx = arr;
this.day = function(dateofday) {
//Some code going here which results will be stored variables like:
this.a = someInnerFunction();
this.b = someOtherFunction();
}
}
我想當我創建外部函數的一個實例來訪問這些變量,在某種程度上是這樣,如果這是可能的:
var value = new UserStat(arr1).day('2012-10-20').a
預先感謝您的幫助!
只需在結尾處有「日期」功能'返回這個;'。 – Pointy
基本的問題是,通過使用'this',你將'a'和'b'變量綁定到'UserStat'對象。 – bellpeace