我需要选择 tbody 并在此部分中插入一些 tr :
<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>');