DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> 通過JQuery將DIV的滾動條滾動到指定的位置方便自動定位
通過JQuery將DIV的滾動條滾動到指定的位置方便自動定位
編輯:JQuery特效代碼     
這裡有一個方法可以將DIV的滾動條滾動到其子元素所在的位置,方便自動定位。
. 代碼如下:
var container = $('div'),
scrollTo = $('#row_8');

container.scrollTop(
scrollTo.offset().top - container.offset().top + container.scrollTop()
);

// Or you can animate the scrolling:
container.animate({
scrollTop: scrollTo.offset().top - container.offset().top + container.scrollTop()
});​

不需要任何JQuery插件即可完成所需的效果,非常好用!
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved