在循环外添加jQuery值(创建实时竞标),可以使用jQuery的'sum”函数对循环中的值进行求和操作。
以下是示例代码:
HTML
3
$20.00
2
$15.00
Total: $
JavaScript/jQuery
var total = 0;
$('.item-qty').each(function() {
var qty = parseInt($(this).text());
var price = parseFloat($(this).next('.item-price').text().replace('$', ''));
total += qty * price;
});
$('.total-amount').text(total.toFixed(2));
$('.bid-button').click(function() {
// create live bid code here
});
以上代码通过循环遍历每个商品的数量和价格,计算出总价,并将其显示在页面上。
在单击'Bid Now”按钮时,可以在事件处理程序中添加更多代码,以创建实时竞标。