长话短说,我需要找到一种快速的方法来从 Google Chrome 中的 JavaScript 控制台滚动 div 元素。这是我要滚动的元素的图片:
http://i1250.photobucket.com/albums/hh527/dr4g1116/Capture_zps63402209.png
这是我需要滚动的 DIV 项目的 HTML(在顶部突出显示):
http://i1250.photobucket.com/albums/hh527/dr4g1116/Capture1_zps04c66647.png
这是我到目前为止所尝试的:
第一的:
<NestedList_trends_trends_variable_selector_variable_selector_variable.scrollTo>(0,250)
下一个:
NestedList_trends_trends_variable_selector_variable_selector_variable.scrollTo(0,250)
最后:
$('body').animate({ scrollTop: $('#NestedList_trends_trends_variable_selector_variable_selector_variable').offset().top}, 5000)
最后一个只是滚动了整个页面。不知道为什么,因为我提到了正确的 DIV ID。
我试过调整这三种方法中的任何一种,但都无济于事。我的想法已经用完了,我在网上找到的任何东西都没有帮助我。有人对我如何滚动这个元素有任何想法吗?请告诉我!
谢谢和欢呼!!
更新:
试过这个无济于事:
$('#NestedList_trends_trends_variable_selector_variable_selector_variable').animate({ scrollTop: $('#Button_86').offset().top}, 5000)