0

この下markupに、 が表示されますclass name is same for every button。ボタンの同じクラス名を持つボタンの数が増えました。任意のボタンをクリックすると、 の値のみが取得されますlast button valuelast divここで、値がであることがわかります30。そのため、すべてのボタンをクリックすると、最後の値のみが取得されます。私のhtmlマークアップはこのようなものです

<div class="cart">
  <div>Qty:
    <input type="text" value="10" size="2" name="quantity">
    <input type="hidden" value="42" size="2" name="product_id">
    &nbsp;<input type="button" class="button-cart" value="Add to Cart">
  </div>
  <div>Qty:
    <input type="text" value="20" size="2" name="quantity">
    <input type="hidden" value="42" size="2" name="product_id">
    &nbsp;<input type="button" class="button-cart" value="Add to Cart">
  </div>
  <div>Qty:
    <input type="text" value="30" size="2" name="quantity">
    <input type="hidden" value="42" size="2" name="product_id">
    &nbsp;<input type="button" class="button-cart" value="Add to Cart">
  </div>
</div>

今私のjQueryスクリプトはこのようなものです

$('.button-cart').click(function() {
    $.ajax({
        url: 'index.php?route=checkout/cart/add',
        type: 'post',
        data: $('.product-info input[type=\'text\'], .product-info input[type=\'hidden\'], .product-info input[type=\'radio\']:checked, .product-info input[type=\'checkbox\']:checked, .product-info select, .product-info textarea'),
        dataType: 'json',
        success: function(json) {
            $('.success, .warning, .attention, information, .error').remove();

            if (json['error']) {
                if (json['error']['option']) {
                    for (i in json['error']['option']) {
                        $('#option-' + i).after('<span class="error">' + json['error']['option'][i] + '</span>');
                    }
                }
            } 

            if (json['success']) {
                $('#notification').html('<div class="success" style="display: none;">' + json['success'] + '<img src="catalog/view/theme/default/image/close.png" alt="" class="close" /></div>');

                //$('.success').fadeIn('slow');

                $('#cart-total').html(json['total']);

                $('html, body').animate({ scrollTop: 0 }, 'slow'); 
                setTimeout(opencartpage(),1000);
            }   
        }
    });
});
4

2 に答える 2

0

コードには、AJAX メソッドのデータとして jQuery セレクターがあります。必要なのは名前と値のペア (またはフォーム フィールドのその他の表現) であるため、おそらく意味がありません。

あなたがやりたいと思うこと(すべてのフォームフィールドをAJAXリクエストに入れる)の最も簡単な解決策は、.serialize()関数を使用することです。

すべてのフィールドが id を持つ同じフォームにある場合は、それらすべてをクエリ文字列として返すことに#foobarなります。$('#foobar').serialize()

于 2012-11-18T14:57:09.860 に答える