我有这个代码
<div class="data"> <div class="another"> </div> <!-- need to add element here --> </div>
解决方法
如果你特意要在另一个div元素之后插入,请尝试
insertAfter:
$('<div>Another 2</div>').insertAfter($('.another'));
在$(‘。another’)部分中,您可以更精确地指定目标。