我有一个类的 div 负载,testimonial如果特定条件为真,我想使用 jquery 循环它们以检查每个 div。如果是真的,它应该执行一个动作。
testimonial
有谁知道我会怎么做?
使用 each:’ i‘ 是数组中的位置,obj是您正在迭代的 DOM 对象(也可以通过 jQuery 包装器访问$(this))。
i
obj
$(this)
$('.testimonial').each(function(i, obj) { //test });
查看api 参考以获取更多信息。