我想从变量
下面删除第二次出现的元素var t1=
'<table>
<thead>
<tr>
<th> </th>
<th>first</th>
<th>second</th>
</tr>
</thead>
<tbody>...</tbody>
</table>';
我试过
$(t1).find('thead').children().slice(2).detach();
它没有用。
我也尝试过以下
var ndx = 2;
$(t1).find('thead').remove(":nth-child(" + ndx + ")");
它也不起作用。
我知道它不应该那么复杂。有人可以帮我解决如何使用jQuery删除元素
由于