我無法將焦點置於表格中輸入框的第一個td單元格。我使用this post的解決方案將單元格內容更改爲輸入。現在我想把焦點放在第一個輸入框上。 我的表結構是這樣的將焦點設置在第一個td單元格中,輸入表格
<table id="knowledgeTreeTable" class="custom">
<tbody>
<tr>
<th class="">Who are the services being provided for?</th>
<td class="">
<input type="text" style="width: 97%;">
</td>
</tr>
<tr>
.....
</tr>
.....
</tbody>
</table>