как суммировать значения на основе номера типа ввода * $ (значение) - PullRequest
0 голосов
/ 25 ноября 2018

JS:

var quantity = $("#quantity").val();
var ticketprice = $("#ticketprice").val();
var total = ticketprice * quantity;

$(document).ready(function (e) {
  $("input").change(function () {
    var value = 0;
    $("input[name=quantity]").each(function () {
        value = value + parseInt($(this).val());
    }),
    $("input[name=jumlah3]").val(total);
  });
});

Количество в JQuery в этом файле JS:

  function wcqib_refresh_quantity_increments() {
        jQuery("div.quantity:not(.buttons_added), td.quantity:not(.buttons_added)").each(function (a, b) {
            var c = jQuery(b);
            c.addClass("buttons_added"), c.children().first().before('<input type="button" value="-" class="minus" />'), c.children().last().after('<input type="button" value="+" class="plus" />');
        });
    }
    String.prototype.getDecimals || (String.prototype.getDecimals = function () {
        var a = this,
            b = ("" + a).match(/(?:\.(\d+))?(?:[eE]([+-]?\d+))?$/);
        return b ? Math.max(0, (b[1] ? b[1].length : 0) - (b[2] ? +b[2] : 0)) : 0;
    }), jQuery(document).ready(function () {
        wcqib_refresh_quantity_increments();
    }), jQuery(document).on("updated_wc_div", function () {
        wcqib_refresh_quantity_increments();
    }), jQuery(document).on("click", ".plus, .minus", function () {
        var a = jQuery(this).closest(".quantity").find(".qty"),
            b = parseFloat(a.val()),
            c = parseFloat(a.attr("max")),
            d = parseFloat(a.attr("min")),
            e = a.attr("step");
        b && "" !== b && "NaN" !== b || (b = 0), "" !== c && "NaN" !== c || (c = ""), "" !== d && "NaN" !== d || (d = 0), "any" !== e && "" !== e && void 0 !== e && "NaN" !== parseFloat(e) || (e = 1), jQuery(this).is(".plus") ? c && b >= c ? a.val(c) : a.val((b + parseFloat(e)).toFixed(e.getDecimals())) : d && b <= d ? a.val(d) : b > 0 && a.val((b - parseFloat(e)).toFixed(e.getDecimals())), a.trigger("change");
    });

HTML:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="ui-grid-a">
    <div class="quantity buttons_added">
        <table class="registration-form" id="registration-form">
            <tr>
                <td>
                    <div class="ui-block-a">
                        <div id="test">
                            <input type="button" value="-" class="minus" id="jumlah" name="jumlah">
                        </div>
                    </div>

                    <div class="ui-block-b">

                        <input type="number" step="1" min="1" max="10" id="quantity" name="quantity" value="1" title="Qty" class="input-text qty text" size="6" pattern="" inputmode="" readonly>

                    </div>

                    <div class="ui-block-c">
                        <div id="test2">
                            <input type="button" value="+" class="plus" id="jumlah2" name="jumlah2">
                        </div>
                    </div>


                </td>
            </tr>


        </table>


        <div id="test3">
            <input type="text" value="0" id="jumlah3" name="jumlah3" readonly> 
        </div>

    </div>
</div>

Как можно подвести итогвходные значения автоматически?

В настоящее время, когда я увеличиваю количество, отображаемое значение общей цены не изменяется и остается в качестве ticketprice * 1.

Так, например, если ticketprice равен 50 $ за 1 количество, когда я изменилк 2 количеству, это все еще остается как 50 $, а не 100 $.

1 Ответ

0 голосов
/ 25 ноября 2018

Попробуйте:

Если ticketprice будет 100:

$(document).ready(function(){
  var ticketprice = 100 ;
  var quantity ;
  $('input[type=button]').click(function(){
    quantity = parseInt( $("#quantity").val() ) ;
    if(this.className == 'minus' )
      quantity = (quantity - 1) < 0 ? 0 : (quantity - 1) ;
    else if (this.className == 'plus')
      quantity = quantity + 1 ;
    $("#quantity").val(quantity);
    $("input[name=jumlah3]").val( quantity * ticketprice ) ;
  })
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<div class="ui-grid-a">
  <div class="quantity buttons_added">
    <table class="registration-form" id="registration-form">
      <tr>
        <td>
          <div class="ui-block-a">
            <div id="test">
              <input type="button" value="-" class="minus" id="jumlah" name="jumlah">
            </div>
          </div>
          <div class="ui-block-b">
            <input type="number" step="1" min="1" max="10" id="quantity" name="quantity" value="1" title="Qty" class="input-text qty text" size="6" pattern="" inputmode="" readonly>
          </div>
          <div class="ui-block-c">
            <div id="test2">
              <input type="button" value="+" class="plus" id="jumlah2" name="jumlah2">
            </div>
          </div>
        </td>
      </tr>
    </table>
    <div id="test3">
      <input type="text" value="100" id="jumlah3" name="jumlah3" readonly> 
    </div>
  </div>
</div>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...