Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试克隆一行,然后将其附加如下:-
codeTable.$("tr:first").clone().appendTo(codeTable);
代码成功克隆并附加了<tr>元素。但是当我尝试使用 Jquery 进行选择时,结果中不包含新元素。
<tr>
codeTable.$('tr');
你可以试试:
codeTable.find("tr:first").clone().appendTo(codeTable);
并得到tr:
tr
$(codeTable).find('tr');
或者
$('tr', codeTable);
我假设codeTable是 jQuery 对象。如果没有,则将其包装在$()like$(codeTable)中。
codeTable
$()
$(codeTable)