单击事件不会在 AJAX 加载的对象上触发



我正在使用ajax填充我的购物车。在购物车中,我有一个带有加号和减号按钮的数量字段。 这是按钮的代码:

  <div class="cart-quantity">
                <input type='button' value='+' class='qtyplus CartCount' field='updates_{{ item.id }}' />
<input name="updates[]" id="updates_{{ item.id }}" class="quantity CartCount" value="{{ item.quantity }}" />
      <input type='button' value='-' class='qtyminus CartCount' field='updates_{{ item.id }}' />
  </div>

这是通过加号/减号按钮更新数量字段的 javascript:

// This button will increment the value
$('.qtyplus').on("click", function(){
    // Stop acting like a button
    // Get the field name
    fieldName = $(this).attr('field');
    // Get its current value
    var currentVal = parseInt($('input[id='+fieldName+']').val());
    // If is not undefined
    if (!isNaN(currentVal)) {
        // Increment
        $('input[id='+fieldName+']').val(currentVal + 1);
    } else {
        // Otherwise put a 0 there
        $('input[id='+fieldName+']').val(0);
    }
    e.preventDefault();
$(this).closest('form').submit();
});
// This button will decrement the value till 0
$(".qtyminus").on("click",function() {
    // Stop acting like a button
    // Get the field name
    fieldName = $(this).attr('field');
    // Get its current value
    var currentVal = parseInt($('input[id='+fieldName+']').val());
    // If it isn't undefined or its greater than 0
    if (!isNaN(currentVal) && currentVal > 0) {
        // Decrement one
        $('input[id='+fieldName+']').val(currentVal - 1);
    } else {
        // Otherwise put a 0 there
        $('input[id='+fieldName+']').val(0);
    }
    e.preventDefault();
$(this).closest('form').submit();
});

如您所见,我已尝试将单击事件更改为单击时,但它仍然不起作用。有什么想法吗?

不要将 click 事件直接绑定到.qtyplus,而是尝试使用:

$(document).on('click', '.qtyplus', function() { /* ... */ });

为了获得更好的性能,与其将其绑定到 document,不如使用最接近的 .qtyplus 元素父元素。

最新更新