データ属性を持つ入力フィールドがあります。フィールド合計のボタンをクリックすると、すべてのフィールドの合計が求められます。私はすべてのフィールドの合計を見つけましたが、すべてのフィールドを合計する方法。 total
のデータ属性で入力フィールドを計算する
<input type="text" id="total">
<div class="field">
<input type="number" min="1" max="255" data-price="2" class="wert">
</div>
<div class="field">
<input type="number" min="1" max="255" data-price="2" class="wert">
</div>
<button id="calc-butt">Sum</button>
<script>
jQuery('#calc-butt').click(function() {
jQuery('.field').each(function(){
var price = jQuery(this).find('.wert').attr("data-price");
var cubic = jQuery(this).find('.wert').val();
var total = price * cubic;
});
});
</script>