jqueryを使用してテーブルの合計を計算しようとしましたが、実行合計が表示されませんでした。入力値を入力すると合計生き残り回数を表示したいのですが、合計自動集計、何が問題なのですか?テーブル上のjqueryの合計値
HTML
<table class="table table-condensed">
<thead>
<tr>
<td class="text-left"><strong>Product</strong></td>
<td class="text-center"><strong>Value</strong></td>
</tr>
</thead>
<tbody>
<tr>
<td>Microwave</td>
<td><input type="text" id="product_a" name="producta" value="12.000"></td>
</tr>
<tr>
<td>Microwave</td>
<td><input type="text" id="product_b" name="producta" value="19.000"></td>
</tr>
<tr>
<td>Microwave</td>
<td><input type="text" id="product_c" name="producta" value="15.000"></td>
</tr>
<tr>
<td class="thick-line"><strong>Total</strong></td>
<td class="thick-line"><input type="text" id="total" name="total" /></td>
</tr>
</tbody>
</table>
JS
jQuery(document).ready(function(){
var total = ($('#product_a').val() + $('#product_b').val() + $('#product_c').val()) ;
$('#total').val(total);
});
あなたは、あなたの答えとして何を得ていますか? parseInt($( '#product_a')。val()) –
@NickWinnerに感謝のように、parseIntを使って.val()ステートメントを囲むことができます。 –