从jquery如何插入o
<tr><td>some other data</td></tr>
在tr id = user
之后<table>
<tr id="user">
<td>some data</td>
</tr>
</table>
答案 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放在选择器的结束标记之前。