更改div文本滚动底部jquery

时间:2016-03-04 12:46:11

标签: javascript jquery html css wordpress

欢迎。我的网站有一些问题,它建立在wordpress上。所以我创建了fullpane主题wordpress的网站,我想创建一些像索引" x of x section"在右侧。你可以在http://emotivo.pl/nowe/找到这个。我想在我网站右侧的01/05。 这应该以这种方式工作,当我滚动到底部数字时应该从01/05更改为05/05。 我尝试使用在结束标签正文之前添加在页脚中的脚本

<script>
$(window).scroll(function(){
    var children = $("#superContainer").children(); 
    $(children).each(function(index,value) {
    if($(value).hasClass("active")){
        $("div#date").html(index+" of "+ children.length);
    }
  });
});
</script>

帮助mi从stackoverflow写了一些人但是没有正常工作。 也许有人知道我的要求吗? 请帮我解决我的问题。谢谢

1 个答案:

答案 0 :(得分:0)

注意

是不正确的
$(window).scroll()

通过检查您的页面,我看到您的滚动项目有一个 .scrollable 类。

尝试注意

<script>
$(document).ready(function(){ 
  $(document).on('scroll', '.scrollable', function(){
    var children = $("#superContainer").children(); 
    $(children).each(function(index,value) {
    if($(value).hasClass("active"))
        $("div#date").html(index+" of "+ children.length);
    });
  });
});

在你的脚本中。让我知道它是否有效!