应用Windows滚动数据加载,分别用于twitter bootstrap

时间:2016-01-21 17:52:02

标签: javascript jquery html twitter-bootstrap

我有一个带有navtabs的网页。其中两个navtabs有搜索结果,结果会在滚动时逐渐填充。问题是当其中一个选项卡处于活动状态时,在该选项卡内滚动也会在另一个选项卡内逐步填充搜索结果。我只需要隔离活动标签的行为。

由于所有导航标签实际上都是一个html页面,我如何单独应用滚动数据加载到不同标签的窗口。

要检测滚动结束,我正在使用放置在head标签内的java脚本

    $(window).scroll(function() {
                                if($(window).scrollTop() == $(document).height() - $(window).height()) {
// my ajax call to load more data and append it to the event
                                }
                            });

0 个答案:

没有答案