0

我有

.scroller {
    font-family : Arial,Sans-Serif;
    background : white;
    overflow-y : scroll;
    font-size  : 9.5pt; /* needed for scrollers w/o tables */
    }   

我后来申请

<div class="scroller">
   ... lots of content here ...
</div>

默认情况下,会显示滚动条中内容的顶部。我想滑到中间的某个地方。

4

1 回答 1

0

假设您的内容是这样的:

<div class="scroller">
   <div id="1">
      ... lots of content here ...
   </div>
   <div id="2">
      ... lots of content here ...
   </div>
</div>

使用它滚动到<div id="2">

$("div.scroller").scrollTop($("#2").offset().top);

看一个例子:Fiddle Demo

于 2013-07-19T21:59:49.267 回答