$(window).scroll(
function
() {
var
scrollTop = $(
this
).scrollTop();
var
scrollHeight = $(document).height();
var
windowHeight = $(
this
).height();
if
(scrollTop + windowHeight == scrollHeight) {
//此处是滚动条到底部时候触发的事件,在这里写要加载的数据,或者是拉动滚动条的操作
//var page = Number($("#redgiftNextPage").attr('currentpage')) + 1;
//redgiftList(page);
//$("#redgiftNextPage").attr('currentpage', page + 1);
}
});