0
根據問題,我怎樣才能刪除空單元格,並將數據放在JavaScript/Prototype的表格頂部,基本上所有包含數據的單元格都將位於頂部然後空的單元格應該被刪除。如何在JavaScript中刪除表格中的單元格並重新排序
<table>
<tr class="row">
<td class="c1">Cell1</td>
<td class="c2">Cell2</td>
</tr>
<tr class="row">
<td class="c1">Cell1</td>
<td class="c2"></td>
<td class="c3">Cell3</td>
</tr>
<tr class="row">
<td class="c1">Cell1</td>
<td class="c2">Cell2</td>
<td class="c3"></td>
</tr>
</table>
Cell1 Cell2 Cell1 Cell2 Cell3
Cell1 Cell3 ---> Cell1 Cell2
Cell1 Cell2 Cell1
感謝
那麼,你到目前爲止嘗試過什麼?請告訴我們該代碼。 – sjngm