次のコードを含むテーブルがあります。
<table>
<thead>
<tr>
<th>#</th>
<th>Item Name</th>
<th>Item Description</th>
<th>Picture URL</th>
<th>Requested Price</th>
<th>Category</th>
<th>t</th>
</tr>
</thead>
<tbody id="itemsTable">
<tr index="0">
<td>1</td>
<td><input id="itemName0" index="0"></td>
<td><textarea id="itemDescription0" index="0" maxlength="200"></textarea></td>
<td><input id="itemPicURL0" index="0"></td><td><input id="requestedPrice0" index="0"></td>
<td><input id="category0" index="0"></td>
<td><button class="btnRemove ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" index="0" role="button" aria-disabled="false"><span class="ui-button-text">Remove</span></button></td>
</tr>
<tr index="1">
<td>2</td>
<td><input id="itemName1" index="1"></td>
<td><textarea id="itemDescription1" index="1" maxlength="200"></textarea></td>
<td><input id="itemPicURL1" index="1"></td><td><input id="requestedPrice1" index="1"></td>
<td><input id="category1" index="1"></td>
<td><button class="btnRemove ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" index="1" role="button" aria-disabled="false"><span class="ui-button-text">Remove</span></button></td>
</tr>
<tr index="2">
<td>3</td>
<td><input id="itemName2" index="2"></td>
<td><textarea id="itemDescription2" index="2" maxlength="200"></textarea></td>
<td><input id="itemPicURL2" index="2"></td>
<td><input id="requestedPrice2" index="2"></td>
<td><input id="category2" index="2"></td>
<td><button class="btnRemove ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" index="2" role="button" aria-disabled="false"><span class="ui-button-text">Remove</span></button></td>
</tr>
</tbody>
</table>
ユーザーが削除ボタンをクリックすると、現在の行が削除され、他のすべての行が常に0から行を削除できる行数になるように再インデックス付けされるようにしたいのですが、再インデックス化は難しい部分ですが、テーブルノードをトラバースして、それらのインデックスを変更するにはどうすればよいですか?