AutoCAD 3DMAX C语言 Pro/E UG JAVA编程 PHP编程 Maya动画 Matlab应用 Android
Photoshop Word Excel flash VB编程 VC编程 Coreldraw SolidWorks A Designer Unity3D
 首页 > JavaScript

jQuery实现滚动条滚动到子元素位置(方便定位)

51自学网 http://www.wanshiok.com
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); --有动画效果

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持wanshiok.com!


jquery,滚动条,位置  
上一篇:jQuery实现页面滚动时智能浮动定位  下一篇:jquery实现文字单行横移或翻转(上下、左右跳转)