jquery:
$(function(){
var h = $(document).height()-$(window).height();
$(document).scrollTop(h);
});
js:
window.onload = function(){
var h = document.documentElement.scrollHeight || document.body.scrollHeight;
window.scrollTo(h,h);
}
jquery:
$(function(){
var h = $(document).height()-$(window).height();
$(document).scrollTop(h);
});
js:
window.onload = function(){
var h = document.documentElement.scrollHeight || document.body.scrollHeight;
window.scrollTo(h,h);
}
本文标题:设置页面滚动条到最底端
本文链接:https://www.haomeiwen.com/subject/etflgxtx.html
网友评论