2015-10-28 49 views
0

詳情:我在我的應用程序中使用jquery slimscroll,它工作正常。但是我面臨的問題是,當我嘗試在表格中實現slimscroll時,滾動條也與表格標題重疊。我只想讓滾動條僅在表格主體部分中可見。 這裏是我的html:如何在表格中的特定部分使用slimscroll?

<div class="col-sm-12 col-md-6 col-lg-4"> 
        <div class="table-responsive"> 
         <table class="table col-md-12 table-striped table-condensed cf"> 
          <thead class="cf"> 
           <tr> 
            <th>Select</th> 
            <th>Page</th> 
            <th>Count</th> 
           </tr> 
          </thead> 
          <tbody id="pageDetails-1" class="slimScrollPage"> 
          </tbody> 
         </table> 
        </div> 
    </div> 

這裏的類「slimScrollPage」是一個即時通訊使用啓動slimscroll。我曾嘗試將「slimScrollPage」類的位置更改爲各種位置,但徒勞無功。

回答

相關問題