<html>
<style>
body {
height: 5000px;
}
</style>
<body>
<h1>Window 对象</h1>
<h2>scrollTo() 方法</h2>
<p>请单击按钮,来滚动文档。</p>
<button onclick="scrollWin()" style="position:fixed">垂直滚动到 500!</button><br><br>
<script>
function scrollWin() {
window.scrollTo(0, 500);
}
</script>
</body>
</html>