如何在列表中添加现有元素?

发布于 2024-12-04 02:19:00 字数 314 浏览 0 评论 0原文

我将一些项目动态附加到无序列表,但 jQuery .append() 函数仅附加到列表的底部,如下所示:

  • 附加1
  • 附加2
  • 附加3
  • 附录4

但我想做的是像这样附加:

  • 附录4
  • 附加3
  • 附加2
  • 附加1

我该怎么做?

I'm appending some items dynamically to an unordered list, but the jQuery .append() function only appends to the bottom of the list, like this:

  • Appended 1
  • Appended 2
  • Appended 3
  • Appended 4

But what I want to do is append like this:

  • Appended 4
  • Appended 3
  • Appended 2
  • Appended 1

How can I do this?

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

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

发布评论

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

评论(1

遗忘曾经 2024-12-11 02:19:00

您不想ap-pend,您想要pre-pend!有趣的是,您可以使用 prepend 方法。

$('ul').prepend('<li>Prepended 1</li').prepend('<li>Prepended 2</li>');

You don't want to ap-pend, you want to pre-pend! For this, funnily enough, you can use the prepend method.

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