我有一张桌子和一个功能。 我可以采用单元格的参数。
我是JS的新手。请帮助查找当前单元格的索引。谢谢
function changePosition(currentCell) {
let top = currentCell.offsetTop
//need to find index of cell
}
<table class="square-table">
<tr>
<td onmouseover =
"changePosition(this)"></td>
<td onmouseover =
"changePosition(this)"></td>
<td onmouseover =
"changePosition(this)"></td>
<td onmouseover = function() {
"changePosition(this)"></td>
</tr>
</table>
答案 0 :(得分:1)
我在这里找到了解决方案
function changePosition(currentCell) {
let top = currentCell.offsetTop
currentCell.cellIndex
//need to find index of cell
}
&#13;
我的问题已经解决了。遗憾