如果要使文档的像素从窗口的左上角滚动到,请使用pageXoffset和pageYoffset属性。将pageYoffset用于垂直像素。
您可以尝试运行以下代码,以了解如何在JavaScript中使用pageYOffset属性。
<!DOCTYPE html> <html> <head> <style> div { background-color: green; height: 1500px; width: 1500px; } </style> </head> <body> <script> function scrollFunc() { window.scrollBy(200, 200); alert("Vertical: " + window.pageYOffset); } </script> <button onclick="scrollFunc()" style="position:fixed;">Scroll</button> <br><br><br> <div> </div> </body> </html>