我在这里使用Tiny Scroll Bar http://baijs.nl/tinyscrollbar/。
我的问题是,当我切换文件夹(即:http://prntscr.com/tqf3j)时,滚动条会跳到顶部。我想留在固定的位置。
我的部分JavaScript代码:
$(document).on('click', '#TreeView a', function() {
CloseFolderOptions();
$('#TreeView a').removeClass('selected');
$(this).addClass('selected');
if ($(this).next('.sub').find('li').length > 0) {
$(this).next('.sub').slideToggle();
oScrollbar5.tinyscrollbar_update();
}
我不知道文件夹的位置,因为每个用户都可以添加文件夹。
答案 0 :(得分:2)
试试这个:
oScrollbar5.tinyscrollbar_update('relative');