我有一个表单,用户可以选择不同的费用来选择他们想要的服务。当他们选择一项服务时,我使用jQuery将底部的应付总额加起来,这一切都运行正常,而且它只是向用户显示他们需要付多少钱。
然而,在他们点击提交按钮和支付网关加载之间的第二个中,屏幕上的动态值变为NaN。
它看起来不太专业。
以下是代码片段。
HTML
<form method="POST" action="">
<div id="one" class="section btn-primary">
<table>
<tr>
<td>Price</td>
<td><span class="service-price">5.99</span></td>
</tr>
<tr>
<td>VAT</td>
<td><span class="service-vat">1.20</span></td>
</tr>
<tr>
<td>Total</td>
<td><span class="service-total">7.19</span></td>
</tr>
</table>
</div>
<div id="two" class="section btn-primary">
<table>
<tr>
<td>Price</td>
<td><span class="service-price">5.99</span></td>
</tr>
<tr>
<td>VAT</td>
<td><span class="service-vat">1.20</span></td>
</tr>
<tr>
<td>Total</td>
<td><span class="service-total">7.19</span></td>
</tr>
</table>
</div>
<div class="">
<div class=" action">
<table id="total-price">
<tr>
<td>Price</td>
<td id="ex-vat">0</td>
</tr>
<tr>
<td>VAT</td>
<td id="vat">0</td>
</tr>
<hr/>
<tr>
<td>
<h3>Total</h3>
</td>
<td>
<h3 id="payment-total">0</h3>
</td>
</tr>
</table>
</div>
<div class="">
<input type="submit" value="Make Payment">
</div>
</div>
</form>
的jQuery
$(document).ready(function () {
$('.btn-primary').click(function () {
$(this).toggleClass('selected');
var service_price = parseFloat($(this).find('span.service-price').text());
var service_vat = parseFloat($(this).find('span.service-vat').text());
var service_total = parseFloat($(this).find('span.service-total').text());
var paymentService = parseFloat($('#ex-vat').text());
var paymentVat = parseFloat($('#vat').text());
var paymentTotal = parseFloat($('#payment-total').text());
if ($(this).hasClass('selected')) {
paymentService = (paymentService + service_price);
paymentVat = (paymentVat + service_vat);
paymentTotal = (paymentTotal + service_total);
} else {
paymentService = (paymentService - service_price);
paymentVat = (paymentVat - service_vat);
paymentTotal = (paymentTotal - service_total);
}
$('#ex-vat').text(parseFloat(paymentService).toFixed(2));
$('#vat').text(parseFloat(paymentVat).toFixed(2));
$('#payment-total').text(parseFloat(paymentTotal).toFixed(2));
});
});
工作JS FIDDLE,以便您可以看到它的实际效果。如果单击灰色框,则可以使用它。但是,在现场网站上提交时,NaN的总数会发生变化。
有什么想法吗?
答案 0 :(得分:0)
我修好了。
事实证明我在提交按钮上有相同的类(btn-primary),它将所有内容全部抛弃。一旦我在实际选择按钮上更改了类,所以它没有与提交冲突,它就有用了。