我想從Constructor2
在Constructor1
(property1)來引用屬性屬性構造函數,我認爲,這是由這樣確定...或者我應該巢內constructor1
的constructor2
?JS:如何引用>從另一個構造
var Constructor2 = function() {
this.method2 = function() {
// how to reference Constructor1.property ???
};
};
var Constructor1 = function() {
this.property1 = true;
this.property2 = false;
this.method1 = new Constructor2();
};
var inst = new Constructor1();
inst.method1.method2();
'GForce'與'Constructor2'是否相同? – Bergi
您需要將'inst'作爲參數傳遞給'method2',或者從'method1'的構造函數創建對它的引用。 – Bergi
該方法根本不在構造函數上。它返回的實例。 'this'不是指構造函數,而是調用'new Constructor1()'時返回的對象。 –