我有下一个问题:当我滚动3/4
页面时,我需要运行一些事件。我这样做:
var limit_height = 3/4 * jQuery('body').height();
jQuery(window).scroll(function() {
if (jQuery(window).scrollTop() > limit_height) {
alert('You are scrolled 3/4 of page!');
}
});
所以,当我看控制台时(我检查 current scrollTop
)
我有更多的时间,当电流scrollTop < 3/4 * body_height
(所以limit_height)。因此事件不运行。
如果可能的话,请帮助我,我有错误的地方。