だから私は、次のようにそれぞれが構成され、要素の動的にリストされているセットを持っている:n番目のチェックボックスをオンにしたときに特定のクラスのn番目の要素を対象にしていますか?
<div class="under-item-description">
<span class="under-compare-price">100</span><span class="under-price">50</span>
<span class="under-compare-price-2">200</span><span class="under-price-2">100</span>
<div class="under-quantity">
<label class="under-quantity-button">
<input type="radio" checked="checked" name="quantity-1" class="under-quantity-radio" value="1"/>
</label>
<label class="under-quantity-button">
<input type="radio" name="quantity-2" class="under-quantity-radio" value="2"/>
</label>
</div>
</div>
.under-項目の説明のdivがページに示されている時間の量を変更することができます。現在、4回表示されています。
私がしようとしているのは、指定された.under-item-description div、の最初のチェックボックス(name = "quantity-1")をクリックしたときです。 divの.under-compare-price .under-price-2と.under-price-2は隠されている。
2番目のチェックボックス(name = "quantity-2")をクリックすると、.under-compare-price-2と.under-price-2が表示されます。隠しているのは、その .under-item-description div。
$('.under-quantity-button').click(function(){
$('.under-quantity-radio').each(function(){
if($(this).is(':checked')){
$('.under-compare-price:eq('+$(this).parents('.under-item-description').index()+'), .under-price:eq('+$(this).parents('.under-item-description').index()+')').show();
$('.under-compare-price-2:eq('+$(this).parents('.under-item-description').index()+'), .under-price-2:eq('+$(this).parents('.under-item-description').index()+')').show();
}
});
});
しかし、私が望むように機能していないようです:
は、ここに私のJSです。どちらのチェックボックスをクリックしても、第1および第3要素に価格が表示されます。そして、最初のチェックボックスがクリックされたときには元の状態に戻りません。どんな助け?
<fieldset></fieldset>
で
これは、必要以上に複雑になります。 '.parents()'を使用して '.under-item-description'の祖先要素まで行き、そこで' 'find() ''の下にある目的の子孫を単純に '' find ''します。 – CBroe
@CBroeはそれを試みました。親の子供だけではなく、商品の説明のすべてのクラスを対象にしているようです。 – AKor
あなたはまだ '$( 'under-quantity-radio')をやっていますか?あなたはあなたの選択においてより具体的でなければならないでしょう。ここでも、 'find'は与えられた親のサブツリー内でのみ選択する簡単な方法です。 – CBroe