admin管理员组文章数量:1342908
This should be simple, but I can't figure it out
For example, lets assume the class .contentdiv is what were searching for.
I want to obtain (or select) the second or (x amount) .contentdiv in a document then get the html of that div.
x being the div i want to select so pretend x is 1,2 or 3 or any number
jQuery('#slider').filter('.contentdiv').match(x).html();
This should be simple, but I can't figure it out
For example, lets assume the class .contentdiv is what were searching for.
I want to obtain (or select) the second or (x amount) .contentdiv in a document then get the html of that div.
x being the div i want to select so pretend x is 1,2 or 3 or any number
jQuery('#slider').filter('.contentdiv').match(x).html();
Share
edited Jul 31, 2010 at 21:13
Darin Dimitrov
1.0m275 gold badges3.3k silver badges2.9k bronze badges
asked Jul 31, 2010 at 21:08
kr1zmokr1zmo
8373 gold badges13 silver badges30 bronze badges
4 Answers
Reset to default 5There are a couple of ways, but:
$('#slider').filter('contentdiv').eq(x).html();
also
$('#slider').filter('.contentdiv:eq(' + x + ')').html();
but that's messier (in my opinion).
edit — thanks @patrick: the initial selector is selecting a single element (of necessity, because "id" values have to be unique). Perhaps you meant $('#slider div.contentdiv')
which would get all the <div>
elements under` the "slider" container.
And another good ment further clarifies that the indexing of .eq()
and the ":eq()" selector thingy is zero-based.
If .contentdiv
elements are located inside the #slider
element then you need .find()
instead of .filter()
.
Any of these would work for you:
jQuery('#slider').find('.contentdiv').eq(1);
jQuery('#slider .contentdiv').eq(1);
jQuery('#slider .contentdiv:eq(1)');
replacing 1
with whatever number (or variable) you want, and ending with .html()
.
- http://api.jquery./find/
- http://api.jquery./eq/
- http://api.jquery./eq-selector/
Hm..
$('#slider').find('.contentdiv:eq(x)').html();
edit...
$('#slider').find('.contentdiv:eq(' + x + ')').html();
Maybe the nth-child
selector? For example, #slider .contentdiv:nth-child(2)
?
本文标签: javascriptjQuery Get the second or x div with certain classStack Overflow
版权声明:本文标题:javascript - jQuery Get the second or x div with certain class - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743682865a2521413.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论