在包含克隆dom元素的数组上使用jquery选择器

时间:2012-11-10 13:31:49

标签: javascript jquery jquery-selectors

如何在克隆的dom元素数组上使用jQuery选择器:

假设我创建了这样的数组:

var refDom = $(".items").clone(true, true);

是否可以通过选择器返回一些元素,或至少获取数组索引?

2 个答案:

答案 0 :(得分:1)

当然,只需:

refDom.find('.somelement');

要按索引访问元素,您可以这样做:

refDom.eq(2).whatever();

答案 1 :(得分:0)

您可以使用常规选择器:

refDom.find(".your-selector")