首页 > 代码库 > scrollIntoView()

scrollIntoView()

scrollIntoView()窗口滚动
 

1、某DIV窗口滚动到顶部:

document.getElementById("某DIV的ID").scrollIntoView(true);
 
2、某DIV窗口滚动到底部:
document.getElementById(
"某DIV的ID").scrollIntoView(false);

 

scrollIntoView()