2011-05-27 64 views
25

我有這樣的代碼如何追加jQuery中的兄弟?

<div class="data"> 

<div class="another"> 
</div> 
<!-- need to add element here --> 

</div> 

我想使用jQuery我怎麼能追加的另一個使用jQuery

回答

35

如果你特別想anotherdiv元素之後插入,嘗試insertAfter

$('<div>Another 2</div>').insertAfter($('.another')); 

$('.another')部分,另外您也可以更精確地指定目標。

32

我想你想使用的.after()功能同級補充,我把評論的元素:

$('div.another').after('<div>'); 
6

嘗試:

$('div#data').append('your HTML'); 
+7

雖然這將在他的具體例子。如果他有一個以上的內部div,並且想在他們中的一個之後特別插入新元素,它將不起作用。 – 2011-05-27 08:34:20