你可以帮我这个jQuery选择器吗?
$(".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')); } });
基本上,我想选择与.bidbutton类中的元素,该类与每个循环中的.countdown属于同一个父类。
<div class="auctiondivleftcontainer"> <p class="countdown">0</p> <button class="btn primary bidbutton">Lance</button> </div>
然后将其应用于该按钮:
$(button here).addClass("disabled"); $(button here).attr("disabled","");
解决方法
使用jQuery
.siblings()
来选择匹配的兄弟姐妹。
$(this).siblings('.bidbutton');