计算购物车中数量增加或减少时每行的总价。 (数量*价格)

时间:2019-07-12 07:30:00

标签: javascript php jquery

我想计算数量增加或减少时每个项目的总价格,但是当我增加数量时,第一行的价格会放置在所有其他行中。

这是HTML代码

<form method="post" action="n/GetPostData.php">
  <?php 
    $total=0; $all_cart_products=$shoping_cart->allShopingcartValue($id); 
    while ($row=mysqli_fetch_assoc($all_cart_products)) { ?>
  <!-- Shopin Cart -->
  <tr class="cart_item">
    <td class="product-remove">
      <a id="" class="remove"  href="<?php echo $row['shoping_cart_id']; ?>">×</a>
    </td>
    <input id="p_id" type="hidden" name="shoping_cart_id" value="<?php echo $row['shoping_cart_id'] ?>">
    <td class="product-thumbnail">
      <a href="single-product.html"><img width="180" height="180" src="assets/images/products/2.jpg" alt=""></a>
      <!-- <input type="hidden" name="image" value=""> -->
    </td>
    <td data-title="Product" class="product-name">
      <a href="single-product.html"><?php echo $row['name']; ?></a>
      <input type="hidden" name="product_id[]" value="<?php echo $row['product_id']; ?>">
    </td>
    <td data-title="Price" class="product-price">
      <span class="amount">$<?php echo $row['price']; ?></span>
      <input type="hidden" name="product_price[]" value="<?php echo $row['price']; ?>" class="p_price">
    </td>
    <td data-title="Quantity" class="product-quantity">
      <input type="number" name="product_quantity[]" class="input-text qty text p_quantity" title="Qty" value="<?php echo $row['quantity']; ?>" max="29" min="0" step="1">
    </td>
    <td data-title="Total" class="product-subtotal">
      <span class="amount p_total_s">$<?php echo $row['total']; ?></span>
      <input type="hidden" name="product_total[]" value="<?php echo $row['total']; ?>" class="p_total">
    </td>
  </tr>
  <tr>
    <td class="actions" colspan="6">
      <input type="submit" value="Update Cart" name="update_cart" class="button">
      <span></span>
    </td>
  </tr>
  </tbody>

  </table>
</form>

这是JavaScript jQuery代码

$('.p_quantity').change(function() {
    var price = $('.p_price').val();
    var quantity = $('.p_quantity').val();
    $('.p_total').text(price * quantity);
});

2 个答案:

答案 0 :(得分:1)

您需要找到与输入内容相对的其他元素

使用$(".p_price")时,它将找到带有class=p_price的所有元素。

在集合上使用.val()时,它会为您提供第一个的值。
在集合上使用.text()时,它将在每个元素中设置文本。

因此$(".p_total").text($(".p_price").val())将所有p_total设置为第一个p_price的值。 (并外推到数量)

通过使用$(this).closest(".cart_item"),您可以找到.cart_item的“最亲代”。

然后使用cartitem.find(".p_price")(例如),您获得的p_price与触发事件的p_quantity在同一cart_item中。

给予:

$('.p_quantity').change(function() {
    var cartitem = $(this).closest(".cart_item");
    var price = cartitem.find('.p_price').val();
    //var quantity = cartitem.find('.p_quantity').val();
    var quantity = $(this).val();  // same as above, no need to re-find this
    cartitem.find('.p_total').text(price * quantity);
});

最后一行可能应该是:

    cartitem.find('.p_total_s').text(price * quantity);
    cartitem.find('.p_total').val(price * quantity);

由于p_total是隐藏的输入,因此应使用.val()

答案 1 :(得分:0)

只需替换行$('。p_total')。text(price *数量);与:

func getCurrencyFullName(code: String) -> String? {
    return Locale.current.localizedString(forCurrencyCode: code)
}

使用val代替文本。

相关问题