1

掃除が必要なフッタブルがあります。つまり、フッタブルのすべての行を削除する必要があります。それを行うためのフッタブル機能はありますか?または、行を 1 つずつ削除する必要がありますか?

これを行ってテーブルを再初期化しようとしました:

$('.footable').footable();

また、次のように行間を反復しようとしました:

var footable = $('table').data('footable');

//This is the problem I don´t know how to get first row in the table.
var row = ??????.parents('tr:first'); 

var next=row.next();
for (var i=0; i<long-1; i++){
  footable.removeRow(next);
  next=row.next();
}
footable.removeRow(row);

そして、私の対応するHTMLソースコード:

<table class="footable footable-loaded">
<thead>
<tr>
    <th>Cantidad</th>
    <th>Producto</th>
    <th>Precio</th>
    <th>Eliminar</th>
</tr>
</thead>
<tbody>
</tbody>
<tfoot>
    <tr>
        <th></th>
        <th>Total</th>
        <th id="total">19.5</th>
        <th></th>
    </tr>
</tfoot>
</table>
4

2 に答える 2