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