如何在表中的第一个 tr 之后添加 tr ?

发布于 2024-10-20 01:37:30 字数 372 浏览 6 评论 0原文

可能的重复:
使用以下命令在第一个表行之后插入新表行jQuery

我已经为我的表填充了一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

星星的轨迹 2024-10-27 01:37:30

您将需要使用 jquery after,如下所示:

$('#myTable tr:first').after($tr);

You will want to use jquery after, like this:

$('#myTable tr:first').after($tr);
看轻我的陪伴 2024-10-27 01:37:30

您可以做一件事,将第一个 tr 保留到表的 ,并将其余 tr 保留到表的

现在做

$('#myTable tbody').prepend($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

$('#myTable tbody').prepend($tr);
怪我入戏太深 2024-10-27 01:37:30

您需要使用 .after

$('#myTable > tbody > tr:first').after($tr);

You need to use .after

$('#myTable > tbody > tr:first').after($tr);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文