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スクロールトップまたはピクセルの高さだけで設定できます。
一部の画像の読み込みがスクロール位置に影響を与える可能性があるため、代わりにwindow.loadを使用してください
$(window).load(function() { $(document).scrollTop(100); });
$(document).ready(function() { $(document).scrollTop(100); });