Using jquery to get per row totals and grand total of table

后端 未结 2 1043
忘了有多久
忘了有多久 2020-12-30 12:31

So the short version of this is: Can I traverse only the elements within the matched element of the selectors before the each()? Or is there a simpler way of ge

相关标签:
2条回答
  • 2020-12-30 12:44

    You are trying to set your context incorrectly try this:

    function findTotals() {
        $("tbody tr").each(function() {
            row_total = 0; 
            $("td:not(.total) input:text",this).each(function() {
               row_total += Number($(this).val());
            }); 
            $(".total :input:text",this).val(row_total);
        });
    
    }
    

    For more information about the context check out the jquery docs: http://docs.jquery.com/Core/jQuery#expressioncontext

    0 讨论(0)
  • 2020-12-30 13:04

    There can be two parameters for a selector. The second parameter is the context htat that the search is to take place in. Try something like the following: $('#tableID tbody tr).each(function(){ //now this is a table row, so just search for all textboxes in that row, possibly with a css class called sum or by some other attribute $('input[type=text]',this).each(function(){ //selects all textbosxes in the row. $(this).val() gets value of textbox, etc. }); //now outside this function you would have the total //add it to a hidden field or global variable to get row totals, etc. });

    0 讨论(0)
提交回复
热议问题