このjQueryセレクタを手伝ってもらえますか?jQueryを使用して兄弟要素を選択するにはどうすればよいですか?
<div class="auctiondivleftcontainer">
<p class="countdown">0</p>
<button class="btn primary bidbutton">Lance</button>
</div>
そして、そのボタンにこれを適用します:
$(".auctiondiv .auctiondivleftcontainer .countdown").each(function() {
var newValue = parseInt($(this).text(), 10) - 1;
$(this).text(newValue);
if (newValue == 0) {
$(this).parent().fadeOut();
chat.verify($(this).parent().parent().attr('id'));
}
});
基本的に、私は、各ループで.countdownと同じ親に属する.bidbuttonクラスを持つ要素を選択したい
$(this)
以来
$(button here).addClass("disabled");
$(button here).attr("disabled", "");
'Siblings()'は、セレクタに一致する要素の* all *の配列を返します。 – LukeP