我编写了一些代码,在循环中调用了一个函数,该函数将该循环迭代中的当前对象传递给该函数。
问题是我不知道如何使用该对象,因为它是动态的,我只能访问 obj 参数。
Javascript
objectifyTableRow(val, i); // Populate object with properties and values
Val 是传递给函数 objectifyTableRow 的对象
function objectifyTableRow(objRow, count) { // Create objects for calculations
var ii = 0;
$('#ctl00_PageContent_freight_rate_column_chaair_r' + count + " " + 'td').each(function(i, val) { // begin each
/* Concatenate column name with subcolumn name. example objFobCost.China/Sea Origin,Air */
if (i < 3) { // columns 0,1,2 in table row
if (ii < arraySubColumn.length) { // Air, Sea/air, sea subcolumns
var PropertyName = arrayColumns[0] + arraySubColumn[ii];
objRow[PropertyName] = parseFloat($(val).html()); // Set key name with var PropertyName
ii += 1;
}
if (ii == 3) { // Reset counter
ii = 0;
}
} // end of outer if
else if (i > 2 & i < 6) {
if (ii < arraySubColumn.length) { // Air, Sea/air, sea subcolumns
var PropertyName = arrayColumns[1] + arraySubColumn[ii];
objRow[PropertyName] = parseFloat($(val).html());
ii += 1;
}
if (ii == 3) { // Reset counter
ii = 0;
}
} // end of outer if
else if (i > 5 & i < 9) {
if (ii < arraySubColumn.length) { // Air, Sea/air, sea subcolumns
var PropertyName = arrayColumns[2] + arraySubColumn[ii];
objRow[PropertyName] = parseFloat($(val).html());
ii += 1;
}
if (ii == 3) { // Reset counter
ii = 0;
}
} // end of outer if
else if (i > 8 & i < 12) {
if (ii < arraySubColumn.length) { // Air, Sea/air, sea subcolumns
var PropertyName = arrayColumns[3] + arraySubColumn[ii];
ii += 1;
}
if (ii == 3) { // Reset counter
ii = 0;
}
} // end of outer if
else {
if (ii < arraySubColumn.length) { // Air, Sea/air, sea subcolumns
var PropertyName = arrayColumns[4] + arraySubColumn[ii];
ii += 1;
}
if (ii == 3) { // Reset counter
ii = 0;
}
} // end of else
}); // end of each loop TD
beginCalc(objRow);
};
每个对象都传递给 beginCalc,因此可以根据 ID、Key 和 value 进行计算
function beginCalc(obj) {
// Every obj used is passed to here
$.each(obj, function(key, element) {
alert('ID: ' + obj[this.id] + '\n' + 'key: ' + key + '\n' + 'value: ' + element); // Check correct obj id, key and value
});
我这样做的原因是因为对象存储来自 asp.net 网格的值,我认为为每个网格行创建对象然后通过选择 obj.key: value * obj 在代码中进行计算会更干净。核心价值。而不是使用 getDocumentByElementId。
任何想法如何通过 beginCalc 函数中的 ID 以编程方式访问这些对象?
谢谢