Element.scrollIntoView() 方法让当前的元素滚动到浏览器窗口的可视区域内。
注意:页面(容器)可滚动时才有用!
element.scrollIntoView(); // 等同于element.scrollIntoView(true)
element.scrollIntoView(alignToTop); //布尔参数
element.scrollIntoView(scrollIntoViewOptions); //对象参数
参数
alignToTop: 布尔参数
- true:相当于 scrollIntoViewOptions: {block: “start”, inline: “nearest”}
- false:相当于scrollIntoViewOptions: {block: “end”, inline: “nearest”}
scrollIntoViewOptions: 对象
- behavior 定义动画过度效果, ‘auto / smooth’ , 默认 ‘auto’
- block 定义垂直方向的对齐, “start / center / end / nearest”。默认为 “start”
- inline 定义水平方向的对齐, “start / center / end / nearest”。默认为 “nearest”
示例:
var element = document.getElementById("box");
element.scrollIntoView();
//禁止scrollIntoView
element.scrollIntoView(false);
element.scrollIntoView({block: "end"});
element.scrollIntoView({behavior: "smooth", block: "end", inline: "nearest"});
element.scrollIntoView({
behavior: "smooth", // 平滑过渡
block: "start" // 上边框与视窗顶部平齐。默认值
})
滚动到底部和顶部例子
<!DOCTYPE html>
<html>
<title>HTML DOM scrollIntoView() 方法示例 - 基础教程(nhooo.com)</title>
<head>
<style>
#container {
margin-top: 10px;
height: 250px;
width: 250px;
overflow: auto;
background-color: lightblue;
}
#box {
position: relative;
margin:500px;
height: 800px;
width: 2000px;
}
</style>
</head>
<body>
<p>单击按钮以滚动到id="box"的元素的顶部或底部:</p>
<div id="container">
<div id="box">
<div style="position:absolute; top:0;">顶部的一些文本</div>
<div style="position:absolute; bottom:0;">底部的一些文本</div>
</div>
</div> <br>
<button onclick="scrollToTop()">滚动到元素的顶部</button>
<button onclick="scrollToBottom()">滚动到元素的底部</button>
<script>
var elem = document.getElementById("box");
function scrollToTop() {
elem.scrollIntoView(true);
}
function scrollToBottom() {
elem.scrollIntoView(false);
}
</script>
</body>
</html>