0

我想检测用户何时滚动超过窗口中的某个点。

[Meta]
X
scroll below = alert() 

我对 CoffeeScript 很陌生,所以任何帮助都会很棒!

我目前拥有的是这样的:

$("#area_1").bind('scroll', ->
  scrollPosition = $(this).scrollTop() + $(this).outerHeight()
  divTotalHeight = $(this)[0].scrollHeight()
  if (scrollPosition >= divTotalHeight)
    alert('end reached')
  )

并且没有出现警报。有小费吗?

更新 我怀疑我的问题与我的两个变量有关。这是一个例子:

$("#area_1").bind($(window).scroll ->
  alert('before 1') # Gets called
  scrollPosition = $(this).scrollTop() + $(this).outerHeight()
  divTotalHeight = $(this)[0].scrollHeight()
  alert('before 2') # Never gets called
  if (1 == 1)
    alert('should get called but dosn't')
)
4

0 回答 0