jQ 操作滚动条滚动到指定位置

孤人 提交于 2019-12-04 06:01:43

jQ:scrollTop()  方法设置或返回被选元素的垂直滚动条位置,

$(selector).scrollTop(position)  position:规定以像素为单位的垂直滚动条位置。

if(item.id == changeInfo.value) {
     let id = treeData[i].id,
         childrenLen = $('#' + id).next().find('.tree-second-node').length,
         h = childrenLen * 28,
         scrollH = ($('#' + item.id).parent().offset().top - this.height);
     $('#' + id).next().animate({'height':h + 'px'});
     setTimeout(() => {
         $('.defined-parts').animate({scrollTop: scrollH});
         $('#' + item.id).parent().addClass('active');
     },500)}

 

 

 

 

 

 

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!