Кредиты владельцу кода.
Как я могу превратить скрипт в multiplication
? скрипт addition
из .amount
. Пожалуйста, помогите.
<tr>
<td>
<input type="text" class="form-control input-sm text-right amount" >
</td>
<td>
<input type="text" class="form-control input-sm text-right amount">
</td>
<td>
<input type="text" class="form-control input-sm text-right" id="total_amount" readonly>
</td>
</tr>
<script>
$(function() {
$('.amount').mask('#,###.##',{reverse : true});
var total_amount = function() {
var sum=0;
$('.amount').each(function(){
var num = $(this).val().replace(',','');
if(num != 0) {
sum +=parseFloat(num);
}
});
$('#total_amount').val(sum.toFixed(2));
}
$('.amount').keyup(function(){
total_amount();
});
});
</script>