猿问

jQuery循环使用相同类的元素

jQuery循环使用相同类的元素

我有一个div加载类testimonial,我想使用jquery循环它们来检查每个div,如果特定条件为真。如果是,它应该执行一个动作。

有谁知道我会怎么做?


跃然一笑
浏览 792回答 3
3回答

慕田峪9158850

使用each:' i'是数组中的位置,obj是您正在迭代的DOM对象(也可以通过jQuery包装器访问$(this))。$('.testimonial').each(function(i, obj) {     //test});有关更多信息,请查看api参考。

UYOU

试试这个...$('.testimonial').each(function(){     //if statement here      // use $(this) to reference the current div in the loop     //you can try something like...     if(condition){     }  });
随时随地看视频慕课网APP
我要回答