标签: javascript html reactjs web
我有一个包含数千行的可滚动表。如何检查视口中的哪些行?
答案 0 :(得分:0)
如果行高不变,那么应该很容易计算:
firstVisibleRowIndex = Math.floor(rowHeight / scroll); lastVisibleRowIndex = Math.ceil(rowHeight / (scroll + tableHeight));