HTML Table - 遍历行并对字段求和

HTML Table - Iterate over row and sum the fields

然后我关注了 table:

    <table style="width:100%" id="testTable">
    <tr>
        <th>length per</th>
        <th>width per</th> 
        <th>length</th>
        <th>width</th>
        <th>total</th>
    </tr>
    <tr align='right'>
        <td>
            <input type="text" name="length-per-input">
        </td>
        <td>
            <input type="text" name="width-per-input">
        </td> 
        <td>
            <input type="text" name="length-total-input">
        </td>
        <td>
            <input type="text" name="width-total-input">
        </td>
        <td>
            <input type="text" name="total-output" disabled="disabled">
        </td>
    </tr>
    <tr align='right'>
        <td>
            <input type="text" name="length-per-input">
        </td>
        <td>
            <input type="text" name="width-per-input">
        </td> 
        <td>
            <input type="text" name="length-total-input">
        </td>
        <td>
            <input type="text" name="width-total-input">
        </td>
        <td>
            <input type="text" name="total-output" disabled="disabled">
        </td>
    </tr>
</table>

<input type=button value='+' onclick="addRow()" />
<input type=button value='Calculate' onclick="Calculate()" />

我也有 javascript 将值相加并合计:

<script>
    function Calculate() {
        var lengthPerInput = $("input[name='length-per-input']").val();
        var widthPerInput = $("input[name='width-per-input']").val();
        var lengthTotal = $("input[name='length-total-input']").val();
        var widthTotal = $("input[name='width-total-input']").val();
        var total = (lengthTotal/lengthPerInput) + (widthTotal/widthPerInput);
        $("input[name='total-output']").val(total);
    }
</script>

这里的目的是让它遍历两行,然后分别添加每一行。 我知道如何使用以下方法获取每一行:

$('#testTable tr').each(function(){
    console.log(this);
    $(this).find('length-per-input').each(function(){
        console.log(this);
    })
})

但是使用该行(通过 "this" 访问)我不知道如何获取正确的单元格,获取它们的值,然后对该行执行总数计算。

请问有什么建议吗?谢谢!

    function Calculate(tr_row) {
        var lengthPerInput = tr_row.find("input[name='length-per-input']").val();
        var widthPerInput = tr_row.find("input[name='width-per-input']").val();
        var lengthTotal = tr_row.find("input[name='length-total-input']").val();
        var widthTotal = tr_row.find("input[name='width-total-input']").val();
        var total = (lengthTotal/lengthPerInput) + (widthTotal/widthPerInput);
        tr_row.find("input[name='total-output']").val(total);
    }

对于您调用函数对值求和的每一行 将行传递给函数,然后它可以收集该行的值

$('#testTable tr').each(function(){
    Calculate($(this))   
})

您可以使用 each() function to iterate through table and use find() 函数来查找 cell 值。

function Calculate() {
  $('#testTable tr').each(function() {
    var lengthPerInput = $(this).find("input[name='length-per-input']").val();
    var widthPerInput = $(this).find("input[name='width-per-input']").val();
    var lengthTotal = $(this).find("input[name='length-total-input']").val();
    var widthTotal = $(this).find("input[name='width-total-input']").val();
    var total = (lengthTotal/lengthPerInput) + (widthTotal/widthPerInput);
    $(this).find("input[name='total-output']").val(total);
  });
}

Working Plunker

How to get a table cell value using jQuery?