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 の垂直スクロール バーの位置を取得するために使用できる javascript/jquery はありますか?
jquery メソッド scrollTop() を使用してみてください:
$("#id1").scrollTop();
スクロールバーのローラーの位置を返します。
また、スクロール バーの高さを取得することもできます。
$("#id1").scrollHeight;