js如何快速找到是哪个元素产生滚动条的?

 

把以下代码复制粘贴到浏览器 Console 面板,敲一下回车。然后滚动滚动条就可以看到打印:

function findscroller(element){
element.onscroll=function () {
console.log(element)
}
Array.from(element.children).forEach(findscroller)
}
findscroller(document.body)

posted @ 2023-03-01 11:42  Timeouting  阅读(170)  评论(0编辑  收藏  举报