如何使用jQuery选择一个兄弟元素?

前端之家收集整理的这篇文章主要介绍了如何使用jQuery选择一个兄弟元素?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
你可以帮我这个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 @L_403_0@来选择匹配的兄弟姐妹。
$(this).siblings('.bidbutton');
原文链接:https://www.f2er.com/jquery/183149.html

猜你在找的jQuery相关文章