Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在一组克隆的 dom 元素上使用 jQuery 选择器:
假设我创建了这样的数组:
var refDom = $(".items").clone(true, true);
是否可以通过选择器返回一些元素,或者至少获取数组索引?
当然,只需执行以下操作:
refDom.find('.somelement');
要通过索引访问元素,您可以执行以下操作:
refDom.eq(2).whatever();
您可以使用常规选择器:
refDom.find(".your-selector")