0

私はテーブルを持っています。各TRの9番目のTDをすべて取得し、同じTRの最初の元のTDの後に配置します。

このコードは9番目のTDを取り、親TRの直後に配置します。同じTRの最初の元のTDの後に配置したいと思います。

$('td:nth-child(9)').each( function(){
   $(this).prependTo($(this).parent());
});

私が必要としているのは、次のものと同等です。

.parent():first-child
4

2 に答える 2

2
$('td:nth-child(9)').each( function(){
    $(this).siblings('td:first').after(this);
});

フィドル

于 2012-09-05T12:35:25.813 に答える
2

これを試して

$('td:nth-child(9)').each( function(){

            $(this).siblings('td').eq(0).after(this);
 });
于 2012-09-05T12:42:54.573 に答える