日期:2014-05-16 浏览次数:20522 次
$(window).scroll(function () {
if ($(document).scrollTop() + $(window).height() > $(document).height() - 1) {
alert(1);
}
});
//经测试 在chrome,ff中测试 向下滚动指触发一次,但是在ie6~ie8中 会触发2次
//有什么好的解决办法吗
var scrollTimer;
$(window).scroll(function () {
if(scrollTimer) {
clearTimeout(scrollTimer);
scrollTimer = undefined;
}
scrollTimer = setTimeout(function(){
if ($(document).scrollTop() + $(window).height() > $(document).height() - 1) {
alert(1);
}
},300);
});