場景:一張內容很大的表格,每隔一段時間刷新數據,用戶看數據的時候忽然刷新了,因爲刷新後滾動條彈到頂部,這時客戶再找剛纔看的內容,就比較困難了,如何解決了?javascript
思路:首先獲取滾動條的位置,而後定時向後臺請求數據的時候,把獲取的滾動條的位置設成滾動到的位置。php
主要代碼:html
var scollPostion = $('#tableTest1').bootstrapTable('getScrollPosition');前端
$('#tableTest1').bootstrapTable('scrollTo', scollPostion); 注意此代碼要在setTimeout裏面執行,緣由是從新獲取數據後還要生成dom節點,須要時間java
完整的代碼:bootstrap
<table class="table-striped table-hasthead" id="tableTest1" data-search="true"> <thead> <tr> <th data-sortable="true" data-field="id">Id</th> <th data-field="name">Name</th> <th data-sortable="true" data-field="url">Website</th> <th data-field="alex">Texa</th> <th data-field="country">Country</th> </tr> </thead> </table>
$(function() { var url = "selectBtTable.php?action=init_data_list"; $('#tableTest1').bootstrapTable({ height: $(window).height() - 460, url: url }); setInterval(refreshData, 3000) function refreshData() { var scollPostion = $('#tableTest1').bootstrapTable('getScrollPosition'); $('#tableTest1').bootstrapTable('refresh', { silent: true, url: "selectBtTable.php?action=init_data_list" }); setTimeout(function() { $('#tableTest1').bootstrapTable('scrollTo', scollPostion); }, 60); } $(window).resize(function() { $('#tableTest1').bootstrapTable('resetView'); }); });
微信公衆號:前端之攻略 ,定時更新前端有關知識。微信