从
jquery如何插入o
<tr><td>some other data</td></tr>
在tr id = user之后
<table> <tr id="user"> <td>some data</td> </tr> </table>
解决方法
像这样……使用
jQuery after() method
$("#user").after("<tr><td>some other data</td></tr>");