将滚动条始终保持在我使用的页面底部
$(document).ready(function() {
$(function() {
$("html, body").animate({ scrollTop: $(document).height() }, "fast");
});
});
它可以在 Firefox 中运行,但不能在 chrome 中运行。为什么它不能在 chrome 中工作,任何人都可以建议我将滚动条始终保持在页面底部的好解决方案。
谢谢你的帮助