1
是否有任何選項,因爲我可以在對象聲明的左側使用變量?就像這樣:在對象聲明的左側使用變量
var col = 'col';
var gridDataVK4000 = {
items : []
};
for (var i = 0; i <= 14; i++) {
col += col + i;
// we now push to the item property
gridDataVK4000.items.push({
col : i,
});
}
因爲我的例子不起作用。 :(
什麼是您預期的結果? –
做這個col增量的原因是什麼?我認爲那不清楚 –