无论如何我可以使用 JavaSCript 在 <table> 中获取指定的第 n个<td> 的 innerHTML 吗?
由于我的表是自动生成的,所以我的 <td> 没有 ID。我正在使用以下 HTML 代码:
<table id="table">
<tr>
<td onmouseover="myTD()">Cell 1</td>
<td onmouseover="myTD()">Cell 2</td>
<td onmouseover="myTD()">Cell 3</td
</tr>
<tr>
<td onmouseover="myTD()">Cell 4</td>
<td onmouseover="myTD()">Cell 5</td>
<td onmouseover="myTD()">Cell 6</td>
</tr>
</table>
但是如何访问例如 Cell 5?
非常感谢!