jquery 在具有特定类的所有元素之后选择

发布于 2024-11-07 11:52:45 字数 436 浏览 0 评论 0原文

我有几个同班的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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

人生戏 2024-11-14 11:52:45

像这样使用 jQuery 的最后一个选择器:

$('.someclassname:last').after('place another div here');

如果您想选择带有某个类名的最后一个 div ,并且没有其他元素类型,则可以使用以下选择器:

$('div.someclassname:last').after('place another div here');

Use jQuery's last selector like so:

$('.someclassname:last').after('place another div here');

If you want to select the last div with someclassname, and no other element type, then use this instead:

$('div.someclassname:last').after('place another div here');
煮茶煮酒煮时光 2024-11-14 11:52:45
$('.someclassname:last').after('place another div here');
$('.someclassname:last').after('place another div here');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文