2015-06-03 22 views
0

我們可以使用$('selector')[0].scrollHeight使用jQuery獲取其中有一個自定義的滾動條

我沒有收到股利使用上述財產的高度,以獲得一個可滾動的div的高度的可滾動DIV的高度,我用自定義滾動條(mcustomscrollbar)。

有什麼辦法可以得到一個滾動div的高度的情況下mcustomscrollbar

這是我fiddle得到一個滾動的div

請告訴我的高度..

在此先感謝

回答

1

我沒有發現任何的手段來得到一個可滾動的div的高度其中有一個自定義scrollabar

我終於想出了這個解決方案

剛開土井高度納克selector childrens的總和就像下面

$(function() { 
    $(".content").mCustomScrollbar({ 
     setHeight: 300 
    }); 
    height = calcualte_height(); 
    alert($('.content').prop('scrollHeight')); 
    alert(height) 
}); 

function calcualte_height() { 
    height = 0; 
    $('.content').children().each(function() { 
     height += $(this).prop('scrollHeight'); 
    }) 

    return height; 
} 

更新fiddle