运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <style> body { width: 5000px; } </style> <body> <h1>The Window Object</h1> <h2>The scrollTo() Method</h2> <p>Click to scroll the document.</p> <button onclick="scrollWin()" style="position:fixed">Scroll to 200 horizontally!</button><br><br> <script> function scrollWin() { window.scrollTo(200, 0); } </script> </body> </html>