-1
は、しかし私は、そのが正しく計算しない1列の合計を取得するには、このコードを使用し追加テーブルのカラムは
予想される出力:13,500.00 現在出力:13
私はこの問題は形式だと思います私はそれに対処する方法を知りません。
<table id="sum_table" width="300" border="1">
<tr class="titlerow">
<td>Col 1</td>
</tr>
<tr>
<td class="amount">6,000.00</td>
</tr>
<tr>
<td class="amount">1,500.00</td>
</tr>
<tr>
<td class="amount">6,000.00</td>
</tr>
</table>
<div id="total"></div>
<script>
var theTotal = 0;
$(".amount").each(function() {
theTotal += parseInt($(this).html());
});
$("#total").html(theTotal);
</script>
あなたの回答は正しいですが、どのように通貨形式で出力しますか? 。 –
は:(機能していない –
@ShermaineChaingan: –