我的类中有很多div,testimonial并且我想使用jquery遍历它们以检查每个div是否满足特定条件。如果为真,则应执行一个操作。
testimonial
有人知道我会怎么做吗?
使用每个:’ i‘是数组中的位置,obj是您要迭代的DOM对象(也可以通过jQuery包装器进行访问$(this))。
i
obj
$(this)
$('.testimonial').each(function(i, obj) { //test });
检查api参考以获取更多信息。