假设我有一张桌子:
<table id="myTable">
<thead>
<th> Col1 </th>
<th> Col2 </th>
</thead>
<tbody>
<tr><td>1</td><td>2</td></tr>
<tr><td>1</td><td>2</td></tr>
</tbody>
</table>
我想在名为Col2的列中添加值,即 4。我不想按列的位置添加值,这在此处回答,因为列的位置是可变的。