jQuery 以循环访问具有相同类的元素

2022-08-29 22:32:35

我在这个类中有很多div,我想使用jquery遍历它们,以检查每个div是否特定条件为真。如果为 true,则应执行操作。testimonial

有谁知道我会怎么做?


答案 1

使用每个:''是数组中的位置,是您正在迭代的DOM对象(也可以通过jQuery包装器访问)。iobj$(this)

$('.testimonial').each(function(i, obj) {
    //test
});

有关详细信息,请查看 API 参考


答案 2

试试这个...

$('.testimonial').each(function(){
    //if statement here 
    // use $(this) to reference the current div in the loop
    //you can try something like...


    if(condition){

    }


 });