如何使用 jQuery 添加一个 div 作为倒数第二个 div?
我知道 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
jsFiddle。
你也可以翻转整个事情。
jsFiddle.
You can flip the whole thing around too.
http://api.jquery.com/before/
http://api.jquery.com/before/
使用之前插入。请参阅此了解更多信息。
Use insert Before. Refer This for more.
您可以使用
:last
伪选择器和.before()
方法这是一个小提琴:http://jsfiddle.net/Aq6eu/
You can use the
:last
pseudo selector and the.before()
methodHere's a fiddle : http://jsfiddle.net/Aq6eu/