在元素jquery之后插入

时间:2010-11-11 14:41:52

标签: jquery jquery-selectors

从jquery如何插入o

   <tr><td>some other data</td></tr>

在tr id = user

之后
<table>
<tr id="user">
 <td>some data</td>
</tr>
</table>

2 个答案:

答案 0 :(得分:6)

像这样......使用jQuery after() method

$("#user").after("<tr><td>some other data</td></tr>");

答案 1 :(得分:0)

$('table').append('<tr><td>some other data</td></tr>')

.append会将html放在选择器的结束标记之前。