jQuery实现定位滚动条位置
时间:2021-11-26 11:56:33|栏目: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); --有动画效果
栏 目:jquery
下一篇:jQuery+PHP实现可编辑表格字段内容并实时保存
本文标题:jQuery实现定位滚动条位置
本文地址:http://www.codeinn.net/misctech/184892.html