x
 
<!DOCTYPE html>
<html>
<style>
#myDIV {
  height: 250px;
  width: 250px;
  overflow: auto;
  background: coral;
}
#content {
  margin:500px;
  height: 800px;
  width: 2000px;
  background-color: coral;
}
</style>
<body>
<h1>Element 对象</h1>
<h2>scrollIntoView() 方法</h2>
<button onclick="myFunction()">滚动</button>
<p>单击“滚动”滚动到 id="content" 的元素的顶部。</p>
<div id="myDIV">
  <div id="content">
  <p>元素内的一些文本。</p>
  <p>元素内的一些文本。</p>
  <p>元素内的一些文本。</p>
  </div>
</div>
<script>
function myFunction() {
  const element = document.getElementById("content");
  element.scrollIntoView();
}
</script>
</body>
</html>