本文介绍了选择组的jQuery对象比$($(&.; someclass")[i]))更容易?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

所以我试图循环遍历someclass的成员,而不是DOM元素,而是他们的jQuery对应物。我一直在使用$($(。someclass)[i]),但这非常难看。有没有更自然的方法呢?

So I'm trying to cycle through the members of "someclass", not the DOM elements but their jQuery counterparts. I've been using $($(".someclass")[i]), but this is pretty ugly. Is there a more natural way to do this?

推荐答案

你可以使用方法:

$(".someclass").eq(i);

这就是说,Felix Kling是对的:你最好用而不是循环遍历存储在jQuery对象中的元素。

That said, Felix Kling is right: you'd better use each() instead of a loop to iterate over the elements stored in a jQuery object.

这篇关于选择组的jQuery对象比$($(&.; someclass")[i]))更容易?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 21:55