:我將我的表滾動使用此功能:在頁面加載爲什麼表格滾動不顯示?
$(function() {
$('#tables-section table').each(function(){
// if table > 4 rows, make scrollable
if($(this).find('tbody tr').length > 4) {
$(this).tableScroll({height:116}); // make scrollable
}
});
});
後的表元素具有tableScroll類,但滾動條顯示不出來。
有誰能告訴我什麼是缺少的?
ü可以創建一個https://jsfiddle.net/? – AddcitedToLearn
你是否試圖讓tbody成爲塊顯示? – Rex