我有以下代码,但无法使用chrome
var win = $(window);
($(document).height() - win.height() == win.scrollTop())
我在互联网上搜索并发现'body'现在可以正常运行但是在页面顶部运行,如何运行以到达页面底部?
($(document).height() - $('body').height() == $('body').scrollTop())
答案 0 :(得分:0)
您需要在准备好文档后调用您的功能。
$(document).ready(function(){
var win = $(window);
($(document).height() - win.height() == win.scrollTop())
})
答案 1 :(得分:0)
使用.scrollTop();
获取文档高度并滚动到底部 var height=$(document).height();
$('body').scrollTop(height)