-----------------------------
| number | name | price |
|---------------------------|
| 1 | Aaaa | 20 |
| 2 | Bbb | 30 |
-----------------------------
| amount| 50 |
-----------------------------
这是我的代码:
<?php $i=0; ?>
@foreach ($buckets as $b)
<tr>
<td>{{$no++}}</td>
<td>{{$b->name}}</td>
<td>Rp <span class="harga[{{$i}}]">{{$b->harga}}</span></td>
<td>Hapus</td>
</tr>
<?php $i++; ?>
@endforeach
<tr>
<td colspan="5">amount</td>
<td colspan="2"><span class="amount"></span></td>
</tr>
我不想使用sql函数(SUM())进行求和,但我想使用JQUERY对它们求和。你能告诉我怎么做吗?
答案 0 :(得分:0)
这里是使用jquery的示例希望它会有所帮助。
<table id="mytable">
<tr>
<td>1</td>
<td>Aaaa</td>
<td>20</td>
</tr>
<tr>
<td>1</td>
<td>Bbbb</td>
<td>30</td>
</tr>
<tr>
<td colspan="2">Amount</td>
<td></td>
</tr>
</table>
total = 0;
$("#mytable tr").not(":last").each(function() {
$this = $(this);
var value = parseInt($this.find('td:last').html(),10);
total = total+value;
});
//use total here
console.log(total);