0

動的に生成されるテーブルがあり、SUM 行の最後にある合計列を見つけたいと考えています。どうすればその列を見つけることができますか?

これまでの私のjqueryは次のとおりです。

keyup: function (e) {

            // get the level
            var level = $(this).closest('tr').attr('id');

            // this = all columns in the row
            var inputValue = $(this).find('input').val();

            // get account nr from first column
            var account = $(this).closest('tr').children().eq(0).text();

            // get all elements with the same level id
            var elements = $('tr[id=' + level + ']'); //.find('*').filter(function () {    

これが私のテーブルです

<table id="table">
    <!-- 
        row is dyanmically looped and tr id can be whatever in that format 
        and has many of the same id
    -->
    <tr id="1-2-2">
          <td>test</td>
          <td><%= x.Description %></td>
          <td>test</td>
          <td>test</td>
          <td><label name="account-<%= rad.Konto %>"></label></td>
        </tr>

Description が SUM の場合、同じ行の最後の列からラベルを取得し、keydown 関数に入力された新しい値で更新したいと考えています。

4

0 に答える 0