事件处理程序 - 如何识别触发事件的页面?

时间:2015-12-26 07:33:04

标签: javascript jquery

我正在尝试创建一个无限滚动,其行为略有不同,具体取决于哪个页面触发它。如何从.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没有变化。

0 个答案:

没有答案