Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
その中にアクティブなオーバーフローがあるdivが1つあり、スクロールを移動するscrollTopとコンソールに表示されますが、それはできます。私を導いてください。
scrollTop
これを試して、ウィンドウのスクロールをバインドし、ウィンドウscrollTopから取得します
$(window).on('scroll', function () { $('label').text($(this).scrollTop()); console.log($(this).scrollTop()); });
デモ