2016-03-04 142 views
-1

歡迎。我的網站存在一些問題,這些問題都是基於WordPress的。所以我創建了fullpane theme wordpress的網站,並且我想在右側創建一些像索引「x部分的x」。你可以在http://emotivo.pl/nowe/找到它。我在網站的右側思考01/05。 這應該以這種方式工作,當我滾動到底數應爲01/05到05/05 我這是在頁腳結束標記體更改div文本滾動底部jquery

<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的人,但沒有正常工作。 也許有人知道請求形式我的問? 請幫我解決我的問題。謝謝

回答

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); 
    }); 
    }); 
}); 

在你的腳本。讓我知道它是否有效!

+0

不幸的是工作..你告訴我,我應該在我的腳本中替換這個元素? – Dawid

+0

$('。scrollable')。scroll(function(){/ *把你的代碼放在這裏* /}) –

+0

我正在做你如何告訴我,但仍然無法工作。 – Dawid