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。我想在 scrolldown 或 keydown 上滚动框,但我必须单击 div 才能实现。因为当我在页面加载后尝试滚动它时,滚动的是正文。
我应该做什么来首先滚动 div 并在该正文之后?
尝试将焦点设置在 div 上。
使用 jQuery 之类的$("#myDiv").focus();.
$("#myDiv").focus();