<div style="height:40000px;"></div>
<p id="p"></p>
xxxxxxxxxx
body{
height:100vh;
overflow: auto;
}
p{
position: fixed;
top: 10px;
left: 10px;
}
xxxxxxxxxx
window.addEventListener('scroll',this.handleScroll,true)
function handleScroll(){
let scrollTop = document.body.scrollTop || document.documentElement.scrollTop;
document.getElementById('p').innerHTML = scrollTop
}