如何使用jQuery从变量中删除元素

时间:2016-02-03 05:46:39

标签: jquery

我想从变量

下面删除第二次出现的元素
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删除元素

由于

0 个答案:

没有答案