0

我编写了一些代码,在循环中调用了一个函数,该函数将该循环迭代中的当前对象传递给该函数。

问题是我不知道如何使用该对象,因为它是动态的,我只能访问 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 以编程方式访问这些对象?

谢谢

4

1 回答 1

0

您想要的是 DOM 节点和值之间的连接。试试这种方法(伪代码):

var nodes = $(...select all the nodes...);
nodes.each( function( index, node ) {
    var obj = { node: node };
    beginCalc(obj);
} );

beginCalc()中,您现在可以使用 访问 DOM 节点obj.node。您可以使用相同的方法将更多数据放入对象中,以将所有内容保存在一个地方(您需要更新的 DOM 节点 + 您需要更新它的所有数据)。

于 2012-07-05T14:08:01.853 回答