我正在使用这个无限滚动脚本。此代码在Firefox和Opera中运行良好,但在放大/缩小时无法在chrome中使用。
$(window).scroll(function() {
if (($(window).scrollTop() + $(window).innerHeight()) >= $(document).height() - 100) {
bookSeach.loadBooksOnScroll(count);
count += 10;
}
});