<button id="btn" type="button" onclick="hoge()">実行</button> <div id="sample" style=" height: 1800px; width: 200px; border: 4px solid; border-color: green;"></div> <p id="hoge">END</p> <script> function hoge(){ let elm = document.documentElement; // scrollHeight ページの高さ clientHeight ブラウザの高さ let bottom = elm.scrollHeight - elm.clientHeight; // 垂直方向へ移動 window.scroll(0, bottom); } </script>