0
私はちょうどhtml trとthのクローンを作成したいが、外側のthead/theadエレメントはキャプチャしない。JQueryはtheadテーブルの各trをクローンするだけです
<thead id="justCloneTR"> // don't clone
<tr id="Vehicle_1"> // clone
<th>1</th> // clone
<th>2</th> // clone
</tr> // clone
</thead> // don't clone
<div id="putCloneHere"></div>
JS
$('#justCloneTR').clone('tr').appendTo('#putCloneHere');
['$ Vehicle_1 '] .clone();'](http://api.jquery.com/clone) –
くそー!それは簡単です。おかげでロブ! – user1040259