本文介绍了滚动到DataTables jQuery插件中的选定行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个无限滚动的dataTable.我想滚动到表刷新上的选定行
I have a dataTable with infinite scrolling. I want to scroll to a selected row on table refresh
$('#table1').dataTable({
'aaData': data,
'aoColumns': columns,
'bInfiniteScroll': true,
'bColumnCollapse': true,
'sScrollY': '200px'
});
$('#btnScroll').click(function(){
$('.dataTables_scrollBody').scrollTo($('#table1 tbody tr').eq(3), 800);
});
但是它不会滚动到该行
推荐答案
您可以使用动画来滚动到您的位置
You can use animate to scroll to your position
$('.dataTables_scrollBody').animate({
scrollTop: $('#table1 tbody tr').eq(3).offset().top
}, 800)
这篇关于滚动到DataTables jQuery插件中的选定行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!