$(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);
}
时间: 2024-10-11 05:50:59