如何在列表中添加现有元素?
我将一些项目动态附加到无序列表,但 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不想ap-pend,您想要pre-pend!有趣的是,您可以使用
prepend
方法。You don't want to ap-pend, you want to pre-pend! For this, funnily enough, you can use the
prepend
method.