次のjQueryコードを使用してテーブルに追加しています。
$("tbody#order_details").append('<tr>...</tr><tr>...</tr>');
$("tbody#order_details").append('<tr>...</tr><tr>...</tr>');
ただし、実行すると<tr>...</tr><tr>...</tr>
、現在の開始位置の下ではなく、ページの上部に配置され<tbody id="order_details">
ます。
テーブルコードは次のとおりです。
<table border="1" cellspacing="0" cellpadding="0" id="OrdersTable"
style="border: 1px solid black; margin-top: 0px;">
<tbody>
<tr>
<th>Account Number</th>
<td colspan="3">99996</td>
<th>Email</th>
<td colspan="5"><asp:Label ID="billing_email" runat="server" Text="Label"></asp:Label></td>
</tr>
<tr>
etc etc....
</tbody>
<tbody id="order_details">
<!-- Start looping the orders here -->
</tbody>
</table>
後にこれらの2行を追加するために何を置くのを忘れてい<tbody id="order_details">
ますか?