我在使用jQuery中的clone函数时遇到了一些问题。我已经能够克隆表头(第一行)。但是我还需要删除行中的第一个元素(th),我已经尝试了很多东西但是仍然失败,这是我的尝试之一:
$('.teamStatusTable tr:first:not("th:first-child")').clone().prependTo($('#tableTrackActual'));
有谁知道一种有效的方法?
答案 0 :(得分:2)
如果你正在克隆整个tr,那么它将包括它的所有孩子。您可以克隆元素,然后remove()
有问题的元素元素。
$('.teamStatusTable tr:first').clone().prependTo(...).find('th:first-child').remove();