如何使用 jQuery 添加一个 div 作为倒数第二个 div?

发布于 2024-10-27 14:48:00 字数 109 浏览 1 评论 0原文

我知道 .append 将代码放在末尾,而 .prepend 将其放在前面,但我的父 div 中有 5 个 div,并且我希望在最后一个子 div 之前动态添加一些 html 代码。我怎样才能做到这一点?

I know that .append puts the code at the end, and .prepend puts it in the front, but I have 5 divs within a parent div, and I want some html code to be added dynamically right before the last child div. How can I do that?

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

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

发布评论

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

评论(4

尤怨 2024-11-03 14:48:00
$('#parent > div:last-child').before('<span>something</span>');

jsFiddle

你也可以翻转整个事情。

$('<span>something</span>').insertBefore('#parent > div:last-child');
$('#parent > div:last-child').before('<span>something</span>');

jsFiddle.

You can flip the whole thing around too.

$('<span>something</span>').insertBefore('#parent > div:last-child');
活泼老夫 2024-11-03 14:48:00
$('#main div:last-child').before("yourhtmlhere");

http://api.jquery.com/before/

$('#main div:last-child').before("yourhtmlhere");

http://api.jquery.com/before/

南薇 2024-11-03 14:48:00

使用之前插入。请参阅了解更多信息。

var insertedElement = parentElement.insertBefore(newElement, referenceElement);

Use insert Before. Refer This for more.

var insertedElement = parentElement.insertBefore(newElement, referenceElement);
围归者 2024-11-03 14:48:00

您可以使用 :last 伪选择器和 .before() 方法

这是一个小提琴:http://jsfiddle.net/Aq6eu/

<div id='parent'>
    <div> child div 1</div>
    <div> child div 2</div>
    <div> child div 3</div>
    <div> child div 4</div>
    <div> child div 5</div>
</div>

$('#parent div:last').before('some text goes here ')

You can use the :last pseudo selector and the .before() method

Here's a fiddle : http://jsfiddle.net/Aq6eu/

<div id='parent'>
    <div> child div 1</div>
    <div> child div 2</div>
    <div> child div 3</div>
    <div> child div 4</div>
    <div> child div 5</div>
</div>

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