jquery 在具有特定类的所有元素之后选择
我有几个同班的div。 div 是动态生成的,所以我并不总是知道这些 div 的确切数量。
我想在最后一个 div 之后放置另一个 div。
<div class="someclassname">content here</div>
<div class="someclassname">content here</div>
<div class="someclassname">content here</div>
当我这样做时:
$('.someclassname').after('place another div here');
它将它放在每个之后。 有没有办法选择带有 .someclassname 的最后一个 div ?
I have a few divs with the same class. The divs are generated dynamically, so I don't always know the exact number of these divs.
I want to place another div after the last div.
<div class="someclassname">content here</div>
<div class="someclassname">content here</div>
<div class="someclassname">content here</div>
When I do this:
$('.someclassname').after('place another div here');
It places it after each one.
Is there a way to select the last div with .someclassname?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样使用 jQuery 的最后一个选择器:
如果您想选择带有某个类名的最后一个 div ,并且没有其他元素类型,则可以使用以下选择器:
Use jQuery's last selector like so:
If you want to select the last div with someclassname, and no other element type, then use this instead: