$(function(){
var h = $(document).height()-$(window).height();
$(document).scrollTop(h);
});
\
window.onload = function(){
var h = document.documentElement.scrollHeight || document.body.scrollHeight;
window.scrollTo(h,h);
}
本文共 275 字,大约阅读时间需要 1 分钟。
$(function(){
var h = $(document).height()-$(window).height();
$(document).scrollTop(h);
});
\
window.onload = function(){
var h = document.documentElement.scrollHeight || document.body.scrollHeight;
window.scrollTo(h,h);
}
转载于:https://www.cnblogs.com/tongzhou/p/6929061.html