Heim  >  Fragen und Antworten  >  Hauptteil

javascript – So implementieren Sie die automatische Summierung von Tabellen

ID Feld 1 Feld 2 Feld 3 Feld 4
1 11 12 13 14
2 22 26 28 27
Gesamt

    <table id="mytable" border="1" width="37%">
  <thead>
    <tr>
    <td width="63" >ID</td>
    <td width="68" >字段1</td>
    <td width="62" >字段2</td>
    <td width="75" >字段3</td>
    <td>字段4</td>
  </tr>
  </thead>

  <tr>
    <td>1</td>
    <td width="63" >11</td>
    <td width="68" >12</td>
    <td width="62" >13</td>
    <td width="75" >14</td>
  </tr>
  <tr>
    <td>2</td>
    <td width="63" >22</td>
    <td width="68" >26</td>
    <td width="62" >28</td>
    <td width="75" >27</td>
  </tr>
  <tr id="totalRow">
    <td>合计</td>
    <td width="63" ></td>
    <td width="68" ></td>
    <td width="62" ></td>
    <td width="75" ></td>
  
  </tr>
</table>


Ich habe gerade das Frontend gelernt. Weiß jemand, wie man JQ verwendet, um jede Spalte automatisch zur Gesamtsumme zu addieren?

黄舟黄舟2687 Tage vor945

Antworte allen(3)Ich werde antworten

  • 为情所困

    为情所困2017-07-01 09:13:59

    注意HTML结构,你写了thead却没有写body,修改如下:

    <table id="mytable" border="1" width="37%">
    <thead>
        <tr>
            <td width="63">ID</td>
            <td width="68">字段1</td>
            <td width="62">字段2</td>
            <td width="75">字段3</td>
            <td>字段4</td>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>1</td>
            <td width="63">11</td>
            <td width="68">12</td>
            <td width="62">13</td>
            <td width="75">14</td>
        </tr>
        <tr>
            <td>2</td>
            <td width="63" >22</td>
            <td width="68" >26</td>
            <td width="62" >28</td>
            <td width="75" >27</td>
        </tr>
    </tbody>
    <tfoot>
        <tr id="totalRow">
            <td>合计</td>
            <td width="63"></td>
            <td width="68"></td>
            <td width="62"></td>
            <td width="75"></td>
        </tr>
    </tfoot>
    </table>

    其中,theadtbodytfoot都分开,thead为表头不遍历,tbody为遍历部分,tfoot为汇总部分,方便jQuery选择器使用。

    var sum = new Array(+$('#mytable thead tr td:not(:first-child)').length).fill(0);
    
    $('#mytable tbody tr').each(function() {
        $(this).children('td:not(:first-child)').each(function() {
            var index = $(this).index() - 1;
    
            sum[index] += +$(this).text();
        });
    });
    
    $('#mytable #totalRow td:not(:first-child)').each(function() {
        var index = $(this).index() - 1;
    
        $(this).text(sum[index]);
    });

    Update

    这里有几个知识点:

    1. new Array()构造新数组

    2. .fill()填充数组

    3. 选择器:not():first-child的用法

    4. 字符串或者数字前面加+强转成数字

    5. 赋值运算符+=的使用

    Antwort
    0
  • 某草草

    某草草2017-07-01 09:13:59

    希望你能理解
    html代码

    <table border="" cellspacing="" cellpadding="">
            <tr>
                <th>ID</th>
                <th>字段1</th>
                <th>字段2</th>
                <th>字段3</th>
                <th>字段四</th>
            </tr>
            <tr id="shuju_0">
                <td>数据1</td>
                <td>12</td>
                <td>21</td>
                <td>25</td>
                <td>2</td>
            </tr>
            <tr id="shuju_1">
                <td>数据2</td>
                <td>32</td>
                <td>16</td>
                <td>42</td>
                <td>21</td>
            </tr>
            <tr id="shuju_2">
                <td>合计</td>
                <td></td>
                <td></td>
                <td></td>
                <td></td>
            </tr>
        </table>

    js代码

    var shuju0 =$("#shuju_0").children(),
            shuju1=$("#shuju_1").children(),
            shuju2=$("#shuju_2").children();
            for(var i=1;i<shuju0.length;i++){
                console.log($(shuju0[i]).text());
                $(shuju2[i]).text($(shuju0[i]).text()*1+$(shuju1[i]).text()*1);
            }

    Antwort
    0
  • 世界只因有你

    世界只因有你2017-07-01 09:13:59

    jquery each遍历每一列,加起来放到最后一行就OK了

    Antwort
    0
  • StornierenAntwort