我正在尝试使用jQuery中的.on()来捕获标记内的滚动事件.
所以这是我的解决方案:
> div id =’popup’
> .fixedHeader类是我正在尝试固定在div框架顶部的东西.
> getScrollTop()是一个返回顶部值的javascript函数(有效)
$(document).on("scroll#popup",'#popup',function(){ alert('scrolling'); $(".fixedHeader").css("position","relative"); $(".fixedHeader").css("top",getScrollTop()); });
解决方法
事件只是滚动,而不是滚动#popup.
// http://ejohn.org/blog/learning-from-twitter // Also,be consistent with " vs ' var $fixedHeader = $('.fixedHeader').css('position','relative'); $(document).on('scroll',function() { console.log('scrolling'); // you *really* don't want to alert in a scroll $fixedHeader.css("top",getScrollTop()); });