添加到最后一个标签之前?

发布于 2024-12-07 01:27:15 字数 481 浏览 0 评论 0原文

这是我的 HTML:

<section>
   <article></article>
   <article></article>
   <!-- INSERT HERE -->
   <footer></footer>
</section>

如何在最后一个 article 之后、footer 之前插入内容?

我尝试这样做:

$('<article>Yipee</article>').appendTo('section article:last');

但这会将新的 article 插入到最后一篇文章中,而不是作为同级文章。

我正在运行 jQuery 1.6.2。

Here's my HTML:

<section>
   <article></article>
   <article></article>
   <!-- INSERT HERE -->
   <footer></footer>
</section>

How would I insert content after the last article but before the footer?

I've tried doing this:

$('<article>Yipee</article>').appendTo('section article:last');

But that inserts the new article inside the last one instead of as a sibling.

I'm running jQuery 1.6.2.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

入画浅相思 2024-12-14 01:27:15

insertAfter 是您正在寻找的功能我认为:

$('<article>Yipee</article>').insertAfter('section article:last');

insertAfter is the function your are looking for I think:

$('<article>Yipee</article>').insertAfter('section article:last');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文