admin管理员组文章数量:1345318
If I have this list...
<div class="class1">
<div class="class2">
<div class="class3">
<span class="class4">test</span>
</div>
</div>
</div>
<div class="class1">
<div class="class2">
<div class="class3">
<span class="class4">test</span>
</div>
</div>
</div>
<div class="class1">
<div class="class2">
<div class="class3">
<span class="class4">test</span> <--- Add class5 here in addition to class4
</div>
</div>
</div>
How do I add class2 in the correct spots? I need it to add to the last span every time even though the number of spans will change. I have something like this, but it doesn't account for the number of items in the list.
jQuery(".class4)").addclass("class5");
Is there anyway to do a "last" class4 scenario? Any help would be appreciated.
If I have this list...
<div class="class1">
<div class="class2">
<div class="class3">
<span class="class4">test</span>
</div>
</div>
</div>
<div class="class1">
<div class="class2">
<div class="class3">
<span class="class4">test</span>
</div>
</div>
</div>
<div class="class1">
<div class="class2">
<div class="class3">
<span class="class4">test</span> <--- Add class5 here in addition to class4
</div>
</div>
</div>
How do I add class2 in the correct spots? I need it to add to the last span every time even though the number of spans will change. I have something like this, but it doesn't account for the number of items in the list.
jQuery(".class4)").addclass("class5");
Is there anyway to do a "last" class4 scenario? Any help would be appreciated.
Share Improve this question asked Apr 26, 2013 at 13:16 Geek GridGeek Grid 2076 silver badges17 bronze badges 1- Can you show that scenario please? – Roko C. Buljan Commented Apr 26, 2013 at 13:23
5 Answers
Reset to default 7Use
jQuery('.class4').last().addClass('class5');
Use last:
jQuery('.class4').last().addClass('class5');
You can use :last
http://api.jquery./last-selector/
$(".class4:last").addClass("class5");
Use the last selector of jQuery http://api.jquery./last-selector/
$(".class4:last").addClass("class5")
There is a stray closing parenthesis after .class4
in your selector:
jQuery(".class4").addclass("class5");
This still does not work because addClass
is case sensitive[1]:
jQuery(".class4").addClass("class5");
But to target only the last .class4
you can use the :last
pseudo-selector[2]...
jQuery(".class4:last").addClass("class5");
... or the .last()
jQuery method[3]:
jQuery(".class4").last().addClass("class5");
[1] http://api.jquery./addClass/
[2] http://api.jquery./last-selector/
[3] http://api.jquery./last/
本文标签: javascriptAdd class to last div in lists using jQueryStack Overflow
版权声明:本文标题:javascript - Add class to last div in lists using jQuery - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743782081a2538016.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论