武汉php大巴吧 关注:13贴子:63
  • 0回复贴,共1

jq滑动加载

只看楼主收藏回复

//滑动加载
$(window).scroll(function () {
var scrollTop = $(this).scrollTop(), scrollHeight = $(document).height(), windowHeight = $(this).height();
var positionValue = (scrollTop + windowHeight) - scrollHeight;
if (positionValue == 0) {
//do something
shoplist();
}
});


IP属地:湖北1楼2015-10-23 15:08回复