我正在尝试创建一个无限滚动,其行为略有不同,具体取决于哪个页面触发它。如何从.scroll
事件处理程序中识别哪个页面触发了.scroll
事件?
$(window).scroll(function(){
if($(window).scrollTop() == $(document).height() - $(window).height()){
if page 1 is the one where window.scrollTop happened, then do this {
}
if page 2 is the one where window.scrollTop happened, then do this {
}
}
})
其他问题:我使用了大量的AJAX,这两页之间的URL没有变化。