vanilla JS(即不是 JQuery 等)中是否有一个函数来确定activeElement
的子编号?
我目前正在使用此代码,但我更喜欢使用selCell = document.activeElement.childNumber;
(例如)而不是循环通过父级:
for(var j = 0; cell = document.activeElement.parentNode.cells[j]; j++)
if(cell == document.activeElement)
selCell = j;
如果需要任何说明(例如 HTML 上下文),请尽管询问!
非常感谢!