如何在表中的第一个 tr 之后添加 tr ?
我已经为我的表填充了一个 tr,并且我想将其添加到第一个 tr 之后。我使用这个:
$('#myTable').prepend($tr);
像往常一样,它将我的新 tt 添加到顶部。
我怎样才能将其添加为第二个?
Possible Duplicate:
Inserting new table row after the first table row using JQuery
I have populated a tr for my table and I want to prepend it after the firts tr. I use this:
$('#myTable').prepend($tr);
As usual, it adds my new tt to the top.
How can I add it as second?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您将需要使用 jquery after,如下所示:
You will want to use jquery after, like this:
您可以做一件事,将第一个 tr 保留到表的
,并将其余 tr 保留到表的
。
现在做
You can do one thing keep the first tr to
<thead>
of the table and rest tr to<tbody>
of the table.Now do
您需要使用
.after
You need to use
.after