多个输入值加总或减去一个总数

时间:2017-02-01 18:39:53

标签: javascript jquery input

我有这段代码,但工作不正常。

这个想法是每个输入都有一个值,并且总和或从总价中减去它的值,具体取决于你点击向上或向下。

现在只是添加,添加和添加疯狂。

非常感谢。

JS:

$( document ).ready(function() {
    $(".quantity").each(function(){
        $(this).change(function(){
            var quantity = ($(this).val());
            var ammount = ($(this).attr("data-price"));
            var price = $(this).closest(".bookSection").find(".item_price").html();
            var subtotal = ammount * quantity;
            var total = parseInt(subtotal) + parseInt(price);
            $(this).closest(".bookSection").find(".item_price").html(total);
        });
    });
});

这里的例子: http://jsbin.com/tolequyobi/1/edit?html,js,output

2 个答案:

答案 0 :(得分:2)

而不是尝试使用.item_price而只是从一开始就计算它。如果不是,您将需要存储旧值以了解是否需要添加或减去。

你可以做这样的事情

$('.quantity').change(function(){ // check change on the inputs
    var total = 0; // set the total to 0
    $(this).parent().find('.quantity').each(function() { // loop on all the items thats in this block
        total += parseInt($(this).attr('data-price')) * parseInt($(this).val()); // add to the total their value
    });
    $(this).parent().find(".item_price").html(total); // and then add it to your html
});

答案 1 :(得分:1)

如果数量发生变化,如何从头开始重新计算总数,而不是试图保持必须维持的总计?

$( document ).ready(function() {
  var price = 0;
    $(".quantity").each(function(){
        $(this).change(function(){          
            var total = computeTotal($(this).closest(".bookSection"));
            $(this).closest(".bookSection").find(".item_price").html(total);
        });
    });
});

function computeTotal(bookSection){
  var total=0;
  bookSection.children('.quantity').each(function(item){
    total += $(this).val() * $(this).attr("data-price");
  });
  return total;

http://jsbin.com/rimubocijo/edit?html,js,output