我试图增加我跨度的答案。
例如值<span id="total_f">210</span>
顺便说一句.21
,它是 %21%,所以我们需要让它.21
乘以它并得到总数。btw
在VAT
荷兰
如果你看到 jqueryvar get_total
我确实乘以mul
我的jQuery错了吗?
这是我的jQuery
$(document).ready(function(){
var sum = 0;
$('input[name=sumof]').each(function(){
sum += parseInt($(this).val());
});
$('input[name=total_f]').val(sum);
$('#total_f').text(sum);
var mul = parseInt($('input[name=total_f]').val());
var get_total = mul * parseInt($('input[name=btw]').val());
$('input[name=s_btw]').val(get_total);
$('#s_btw').text(get_total);
});
我的 html
<table cellpadding="5" cellspacing="0" width="100%">
<tr>
<td><strong>Sub Total</strong></td>
<td>
<?php
if ( $get_total_computation['currency'] == 'euro' ) {
$msg_tot = '€';
} elseif ( $get_total_computation['currency'] == 'usd' ) {
$msg_tot = '$';
}
echo $msg_tot;
?>
<span id="total_f"></span>
<input type="hidden" name="total_f" value="" />
</td>
</tr>
<tr>
<td>
<?
echo $get_total_computation['quo_btw'];
$get_per = explode( '%', $get_total_computation['quo_btw']);
?>
<input type="hidden" name="btw" value=".<?=$get_per[0];?>" />
</td>
<td>
<span id="s_btw"></span>
<input type="hidden" name="s_btw" value="" />
</td>
</tr>
<tr>
<td><strong>Total</strong></td>
<td><?=$btw;?></td>
</tr>
</table>