How does JS add mouse click scroll bar listening?

window.onmousewheel = document.onmousewheel= function(){console.log(123)}

the above one can listen to the mouse wheel, but you can"t listen if you drag the scroll bar with the mouse. What can you do?

Feb.28,2021

$(document). Please (function (event) {

$(this).scrollTop()

});


listen for scroll events of window .
get scroll bar offset

window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop

for monitoring scroll bars, it is recommended that you read this listening scroll bars

Menu