我有一个动态生成的表,我想找到SUM行末尾存在的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函数中输入的新值更新它。