function findscrollerEl(el) {
el.onscroll = function () {
console.log(el);
};
Array.from(el.children).forEach(findscrollerEl);
}
findscrollerEl(document.body);
查找滚动元素,通过监听元素的onscroll事件,当前元素滚动时会触发onscroll事件,从而得到对应的滚动元素。
通过Array.from(el.children)查找当前元素的下级元素再递归调用findscrollerEl来给页面每个元素绑定onscroll事件。
在控制台执行以上代码,当滚动时,就会打印当前滚动的元素。