Check

IE7でtableのtbody

| | コメント(0) | トラックバック(0)
IE7はtableに対してのappendでtbodyがついたり、つかなかったりする。
<table>
<thead><tr></tr></thead>
<tbody><tr></tr></tbody>
</table>
$('table tbody>*').remove();
$('table tbody').append('<tr></tr>');
$('table tbody').append('<tr></tr>');
$('table tbody>*').remove();
//-> 1 == 一番上の一個しか消えない。他は見えてるけどアクセスできない

$('table tr:not(:first), table tbody').remove();
$('table').append('<tr></tr>');
$('table').append('<tr></tr>');
$('table tr:not(:first), table tbody').remove();
//もしかしたらうまくいかなかったのは別の理由かも。
//でもこれが無難だと思う。

トラックバック(0)

このブログ記事を参照しているブログ一覧: IE7でtableのtbody

このブログ記事に対するトラックバックURL: http://0-9.sakura.ne.jp/mt/mt-tb.cgi/422

コメントする