,我需要選擇TBODY並插入本節內的一些TR:jQuery選擇兒童
<div id="retour">
<table>
<thead>
</thead>
<tbody>
</tbody>
</table>
</div>
我曾嘗試下面的代碼,但沒有奏效:
var table = $('#retour > table > tbody').children();
table.append('<tr>');
table.append('<td>' + 'MyInfos' + '</td>');
table.append('</tr>');
刪除'。孩子()' –