我在html页面中使用此代码,以便在用户滚动到页面底部时加载更多数据。
if($(window).scrollTop() + $(window).height() == $(document).height()) //user scrolled to bottom of the page?
我也试过这个:
if($(window).scrollTop() + $(window).innerHeight() == $(document).innerHeight()) //user scrolled to bottom of the page?
我现在不知道ie8有什么问题,但它不适用于它。有没有办法让它运行?
更新 似乎问题来自.scrolltop()我在网上找到一个代码,并将其替换为:
var sTop = document.body.scrollTop || document.documentElement.scrollTop || window.pageYOffset || 0;
if(sTop + $(window).height() == $(document).height()) //user scrolled to bottom of the page?
它有效,但我不知道第一行,只是复制它。这个标准?可以用吗?