运行 ❯
获取您的
自有
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!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>The Element Object</h1> <h2>The scrollIntoView() Method</h2> <button onclick="myFunction()">Scroll</button> <p>Click "Scroll" to scroll to the top of the element with id="content".</p> <div id="myDIV"> <div id="content"> <p>Some text inside an element.</p> <p>Some text inside an element.</p> <p>Some text inside an element.</p> </div> </div> <script> function myFunction() { const element = document.getElementById("content"); element.scrollIntoView(); } </script> </body> </html>