有很多插件可以在用户到达页面底部时加载内容,但是我找不到jquery插件可以在用户到达文档右侧时加载内容。

有一个好的策略可以做到这一点吗?

有一个好的插件吗?

谢谢,
彼得

最佳答案

$('div').scroll(function (){
  var padder = 50;
  if( $(this).scrollLeft() >= $(this).scrollWidth -padder){
     //load more content as the user has scrolled 50px less than, the end,
  }
})


我认为像这样的事情会做到的。

07-24 16:12