jQuery实现定位滚动条位置
jQuery实现滚动条滚动到子元素位置(方便定位)
关键代码如下所示:
<div class="of-y" id="nurse" > <table class="high width" id="nurse-plan"> <tr id="tr-one"></tr> <tr id="tr-two"></tr> <tr id="tr-three"></tr> <tr id="tr-four"></tr> </table> </div>
jQuery:
$("#nurse").scrollTop($("#nurse").scrollTop() + $('#tr-three').offset().top - $("#nurse").offset().top); --普通 $("#nurse").animate({ scrollTop: $("#nurse").scrollTop() + $('#tr-three').offset().top - $("#nurse").offset().top }, 1000); --有动画效果
相关推荐
letheashura 2020-05-10
hgzhang 2019-12-05
JavaJspSsh 2019-11-18
骷髅狗 2019-11-04
zengni 2019-11-02
dly 2015-05-29
jluzh00 2019-09-08
hanfox 2019-05-29
dengjianbin 2018-08-24
luckylqh 2019-04-13
gjcxywwx 2019-07-01
ajhongshaorou 2019-06-29
81497307 2018-08-24
Burgdan 2017-03-19
CoreyJia 2017-03-14
JessieJWang 2019-06-28
84483065 2016-03-08