这个
$(document).scrollTop($(document).height());
<!DOCTYPE html> <html> <head> <title>Scroll Automatically</title> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script> <!-- jQuery code to show the working of this method --> <script> $(document).ready(function() { $("button").click(function() { $(document).scrollTop($(document).height()); }); }); </script> <style> h1 { color: green; } </style> </head> <body> <center> <div> <!-- click on this button and see the change --> <button>Click Here!</button> <h1>GeeksforGeeks</h1> <h1>GeeksforGeeks</h1> <h1>GeeksforGeeks</h1> <h1>GeeksforGeeks</h1> <h1>GeeksforGeeks</h1> <h1>GeeksforGeeks</h1> <h1>GeeksforGeeks</h1> <h1>GeeksforGeeks</h1> <h1>GeeksforGeeks</h1> <h1>GeeksforGeeks</h1> <h1>GeeksforGeeks</h1> <h1>GeeksforGeeks</h1> </div> </center> </body> </html>
标签:jQuery,function,滚动,GeeksforGeeks,height,scrollTop,document,页面 From: https://www.cnblogs.com/hechunfeng/p/17161365.html