我首先對標題表示歉意。將屬性對象的選定對象從原型推送到數組中
我已經被實例化這個原型是尚未:
的noZoom
和zoom
對象將充滿對實例化對象。
我想推到所有屬性noZoom
對象中的propertiesToIlluminate array
所有對象在我Persona
構造。
function Persona() {
this.headArea = {
noZoom: {},
zoom: {}
}
this.torsoArea = {
noZoom: {},
zoom: {}
}
this.arm = {
noZoom: {},
zoom: {}
}
this.leg = {
noZoom: {},
zoom: {}
}
this.pelvis = {
noZoom: {},
zoom: {}
}
this.abdomen = {
noZoom: {},
zoom: {}
}
this.illuminate = function() {
var propertiesToIlluminate = [],
prop, illuminateInternal, i = 0,
delay = 100,
intervalId;
for (prop in //what to put here//) {
propertiesToIlluminate.push(prop);
}
}
}
謝謝,但是這會返回noZoom對象中的對象。我想從該對象中獲取「值」,所以看來我最終需要在迭代中進一步深入一步。有什麼想法嗎? –
我添加了另一個嵌套循環來獲取對象中的所有值。 – Barmar
但是由於'propertiesToIlluminate'是一個數組而不是一個對象,這會丟失'noZoom'對象中的屬性名稱,它只是獲取它們的值。 – Barmar