我有此代码:
if($(window).scrollTop() + $(window).height() == $(document).height())
{
此代码允许在滚动位置位于最底部时加载数据
当滚动位置在底部之前10像素时,如何修改它以加载数据?
答案 0 :(得分:0)
尝试:
if ($(window).scrollTop() + $(window).height() >= ($(document).height() - 10))
{
// Do whatever you want here...
}