获取表格的单元格id可以通过以下步骤进行:
<table>
<tr>
<td id="cell-1-1">Cell 1-1</td>
<td id="cell-1-2">Cell 1-2</td>
</tr>
<tr>
<td id="cell-2-1">Cell 2-1</td>
<td id="cell-2-2">Cell 2-2</td>
</tr>
</table>
在上面的例子中,每个单元格都有一个唯一的id,格式为"cell-行号-列号"。
var cellId = document.getElementById("cell-2-1").id;
console.log(cellId); // 输出:cell-2-1
领取专属 10元无门槛券
手把手带您无忧上云