我有这段代码
<div class="data">
<div class="another">
</div>
<!-- need to add element here -->
</div>
我想添加使用jQuery放置注释的元素我如何使用jQuery追加另一个兄弟
答案 0 :(得分:38)
如果您特别想在another
div
元素之后插入,请尝试insertAfter:
$('<div>Another 2</div>').insertAfter($('.another'));
在$('.another')
部分,您可以更精确地指定目标。
答案 1 :(得分:35)
我想你想使用.after()函数:
$('div.another').after('<div>');
答案 2 :(得分:6)
尝试:
$('div#data').append('your HTML');