添加到最后一个标签之前?
这是我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
insertAfter 是您正在寻找的功能我认为:
insertAfter is the function your are looking for I think: