-2

我只想要<table>没有第一个<tr>并删除之前和之后的任何内容<table>

<div id=aaa>
<div>
<table>
<tr><td>text one</td></tr>
<tr><td>text two</td></tr>
</table>
<br>
more text
</div>
</div>
4

1 回答 1

0

你可以这样做:

$('table tr').not(':nth-child(2)').remove() //remove everything but second
$('#aaa').html($('table')); //replace the outer element with this node

检查这个小提琴

于 2013-06-17T20:21:40.207 回答